Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions cmd/lfx-v1-sync-helper/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,14 @@ func handleKVPut(ctx context.Context, entry jetstream.KeyValueEntry) {
handleCommitteeUpdate(ctx, key, v1Data)
case "platform-community__c":
handleCommitteeMemberUpdate(ctx, key, v1Data)
case "itx-poll":
handleVoteUpdate(ctx, key, v1Data)
case "itx-poll-vote":
handleIndividualVoteUpdate(ctx, key, v1Data)
case "itx-surveys":
handleSurveyUpdate(ctx, key, v1Data)
case "itx-survey-responses":
handleSurveyResponseUpdate(ctx, key, v1Data)
case "itx-zoom-meetings-v2":
handleZoomMeetingUpdate(ctx, key, v1Data)
case "itx-zoom-meetings-registrants-v2":
Expand Down
Loading
Loading