generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: afwilcox <[email protected]> Co-authored-by: jon-funk <[email protected]> Co-authored-by: Derek Roberts <[email protected]> Co-authored-by: Ryan Rondeau <[email protected]> Co-authored-by: dmitri-korin-bcps <[email protected]>
- Loading branch information
1 parent
aa7590c
commit 351fb30
Showing
48 changed files
with
1,574 additions
and
592 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export interface CssUser { | ||
username: string; | ||
firstName: string; | ||
lastName: string; | ||
email: string; | ||
attributes: { | ||
idir_user_guid: string[]; | ||
idir_username: string[]; | ||
display_name: string[]; | ||
}; | ||
} |
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,7 @@ | ||
export interface TeamUpdate { | ||
userIdir: string; | ||
adminIdirUsername: string; | ||
agencyCode: string; | ||
teamCode: string | null; | ||
roles: Array<{ name: string }>; | ||
} |
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,26 @@ | ||
export interface NewOfficer { | ||
user_id: string; | ||
create_user_id: string; | ||
create_utc_timestamp: Date; | ||
update_user_id: string; | ||
update_utc_timestamp: Date; | ||
auth_user_guid: string; | ||
office_guid: string | null; | ||
team_code: string | null; | ||
person_guid: { | ||
first_name: string; | ||
middle_name_1: null; | ||
middle_name_2: null; | ||
last_name: string; | ||
create_user_id: string; | ||
create_utc_timestamp: Date; | ||
update_user_id: string; | ||
updateTimestamp: Date; | ||
}; | ||
roles: { | ||
user_roles: Array<{ name: string | undefined }>; | ||
user_idir: string; //Example : fohe4m5pn8clhkxmlho33sn1r7vr7m67@idir | ||
}; | ||
coms_enrolled_ind: boolean; | ||
deactivate_ind: boolean; | ||
} |
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
import { PartialType } from "@nestjs/swagger"; | ||
import { CreateOfficerDto } from "./create-officer.dto"; | ||
|
||
export class UpdateOfficerDto extends PartialType(CreateOfficerDto) {} | ||
export class UpdateOfficerDto extends PartialType(CreateOfficerDto) { | ||
user_roles?: string[]; | ||
} |
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
Oops, something went wrong.