Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions src/models/Event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export enum Event {
PROPOSAL_UPDATED = 'PROPOSAL_UPDATED',
VISIT_CREATED = 'VISIT_CREATED',
VISIT_DELETED = 'VISIT_DELETED',
VISIT_UPDATED = 'VISIT_UPDATED',
EXPERIMENT_CREATED = 'EXPERIMENT_CREATED',
EXPERIMENT_UPDATED = 'EXPERIMENT_UPDATED',
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const SYNC_PROPOSAL_AND_MEMBERS_EVENTS_FOR_HANDLING = [
const SYNC_VISIT_EVENTS_FOR_HANDLING = [
Event.VISIT_CREATED,
Event.VISIT_DELETED,
Event.VISIT_UPDATED,
];

// Class for consuming messages from the ESS One Identity Integration Queue
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const mockOneIdentity: jest.Mocked<Omit<ESSOneIdentity, 'oneIdentityApi'>> = {
getProposalPersonConnections: jest.fn(),
removeConnectionBetweenPersonAndProposal: jest.fn(),
getPersonWantsOrg: jest.fn(),
createPersonWantsOrg: jest.fn(),
upsertPersonWantsOrg: jest.fn(),
cancelPersonWantsOrg: jest.fn(),
hasPersonSiteAccessToProposal: jest.fn(),
};
Expand Down
Loading
Loading