Skip to content

Commit

Permalink
Set UserStatus to Inactive on creation
Browse files Browse the repository at this point in the history
  • Loading branch information
sthuray committed Nov 22, 2024
1 parent 19954a1 commit 069a80c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/typescript/services/implementations/userService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ class UserService implements IUserService {
last_name: user.lastName,
auth_id: firebaseUser.uid,
role: user.role,
status: UserStatus.INVITED,
status: UserStatus.INACTIVE,
email: firebaseUser.email ?? "",
skill_level: user.skillLevel,
can_see_all_logs: user.canSeeAllLogs,
Expand Down

0 comments on commit 069a80c

Please sign in to comment.