Skip to content

Commit

Permalink
Merge pull request #201 from cisagov/197-ui-admin-can-edit-user-infor…
Browse files Browse the repository at this point in the history
…mation

197 UI admin can edit user information
  • Loading branch information
nickviola authored Apr 29, 2024
2 parents 932a3c4 + f777994 commit 08e5f4a
Show file tree
Hide file tree
Showing 2 changed files with 233 additions and 138 deletions.
12 changes: 12 additions & 0 deletions backend/src/api/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,18 @@ class NewUser {
}

class UpdateUser {
@IsString()
@IsOptional()
firstName: string;

@IsString()
@IsOptional()
lastName: string;

@IsString()
@IsOptional()
fullName: string;

@IsString()
@IsOptional()
state: string;
Expand Down
Loading

0 comments on commit 08e5f4a

Please sign in to comment.