Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
suk-6 committed Jul 19, 2024
1 parent 96f8421 commit 9fd9fca
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/modules/user/user.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export class UserService {
}

async updateUserFCMTokenById(id: string, FCMToken: string) {
console.log('🚀 ~ UserService ~ updateUserFCMTokenById ~ FCMToken:', FCMToken);
const user = await this.prisma.user.findUnique({ where: { id } });
if (!user) throw new HttpException('User not found', HttpStatus.NOT_FOUND);

Expand Down

0 comments on commit 9fd9fca

Please sign in to comment.