Skip to content

Commit

Permalink
Prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aish1990 committed May 31, 2024
1 parent 9f2bff4 commit 7ee0df3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/drec-api/src/pods/user/user.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,10 @@ export class UserService {
* @returns
*/
async removeUsersession(userId: number, token: string) {
return await this.userloginSessionRepository.delete({ userId: userId , accesstoken_hash: token.trim()});
return await this.userloginSessionRepository.delete({
userId: userId,
accesstoken_hash: token.trim(),
});
}

async hasgetUserTokenvalid(
Expand Down

0 comments on commit 7ee0df3

Please sign in to comment.