-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CAMS-283 - Add syncOfficeStaff to Offices use case #918
Merged
Merged
Changes from 17 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
eeea11f
WIP - Add syncOfficeStaff to Offices use case
btposey 5d23648
Exclude isolated integrations tests from coverage
btposey 8ead455
Add staff document type
btposey c1b72af
Add putOfficeStaff to offices repo
btposey 4e0cd1a
Update syncOfficeStaff to write users to repo
btposey f4026e0
Alter the group, user and office info returned by syncOfficeStaff
btposey 34ec005
Change shape of office staff document to stop id collisions
btposey a1665aa
Add upsert to document repo interface
btposey d102cea
Update offices use case to upsert office staff
btposey 7525615
Fix broken test due to office staff doc type change
btposey 2c5a23c
Add users without roles to the sync office staff results
btposey e4e971d
Format the sync office staff results as JSON
btposey decf767
Remove id from document repo upsert signature
btposey 64d5564
Merge branch 'main' into CAMS-283-office-staff-sync
btposey a625aab
Fix role group filter and role assignment in sync
btposey 9911178
Reflatten the OfficeStaff document model
btposey 91ccefc
Fix broken getOfficeAttorneys test
btposey c10cc4e
Remove redundant id property from OfficeStaff type
btposey File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { Auditable } from './auditable'; | ||
import { CamsUserReference } from './users'; | ||
|
||
export type OfficeStaff = CamsUserReference & | ||
Auditable & { | ||
id: string; | ||
btposey marked this conversation as resolved.
Show resolved
Hide resolved
|
||
documentType: 'OFFICE_STAFF'; | ||
officeCode: string; | ||
}; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can chase this down in a follow on PR.