Skip to content

Commit

Permalink
Add identity_card_number field to user entity type
Browse files Browse the repository at this point in the history
  • Loading branch information
sergejchak committed Nov 6, 2024
1 parent 23b6c3f commit cdcbe51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/users/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export type UserReadFull = UserReadObscured & {
start_task_at_login: number;
username: string;
personnel_number: string;
identity_card_number: string;
fullname?: string;
// Note: misspelling is intentional abbrevAtion
abbrevation: string;
Expand Down
1 change: 1 addition & 0 deletions src/users/users.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const MockData: {
start_task_at_login: 0,
username: 'manager',
personnel_number: 'MA0001',
identity_card_number: 'K12345678A',
lastname: 'Mustermann',
firstname: 'Max',
fullname: 'Mustermann Max',
Expand Down

0 comments on commit cdcbe51

Please sign in to comment.