Skip to content

Commit

Permalink
Ajuste no isTricked
Browse files Browse the repository at this point in the history
  • Loading branch information
rtenorioh committed Jun 2, 2023
1 parent 3c77e32 commit 6e6004a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backend/src/helpers/SerializeUser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ interface SerializedUser {
whatsapp: Whatsapp;
startWork: string;
endWork: string;
isTricked: string;
}

export const SerializeUser = (user: User): SerializedUser => {
Expand All @@ -22,6 +23,7 @@ export const SerializeUser = (user: User): SerializedUser => {
queues: user.queues,
whatsapp: user.whatsapp,
startWork: user.startWork,
endWork: user.endWork
endWork: user.endWork,
isTricked: user.isTricked
};
};

0 comments on commit 6e6004a

Please sign in to comment.