Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

Data Stores

Abhijeet Bodhankar edited this page Nov 22, 2019 · 3 revisions

Data stores

The app uses the following data store:

  1. Azure Storage Account
  • [Table] Stores the latest scrum state like conversation id, members in group chat, scrum activity status.

All these resources are created in your Azure subscription. None are hosted directly by Microsoft.

Storage account

Scrum Table

The Scrum table stores the conversation state like conversation id, members in group chat, scrum activity status, etc. The table has following rows :

Attribute Comment
PartitionKey ScrumInfo
RowKey Conversation ID of group chat
ScrumStartActivityId Activity ID of card that has Update scrum & End scrum button
IsScrumRunning Flag to show scrum is running
TimeStamp Current DateTime in UTC
TrailCardActivityId Activity ID of card that shows trail details
LastModifiedByName Display name of user
MembersActivityIdMap Deserialized JSON of user mapping corresponding to their activity id. {“userid”:”activityId”}
Clone this wiki locally