remove console logs

This commit is contained in:
andres
2023-06-15 23:17:07 +02:00
parent 4e6e18b708
commit 121fceb97a
5 changed files with 7 additions and 8 deletions

View File

@@ -21,8 +21,6 @@ export class AuthService {
const refreshToken = jwt.sign(payload, refreshSecretKey, {
expiresIn: '30d',
})
console.log(refreshToken.length)
// Save refresh token in the database
await this.prisma.refreshToken.create({
data: {
userId: userId,