This commit is contained in:
2025-11-10 22:42:32 +03:30
parent 45ca2fde06
commit bca4b75b6a
21 changed files with 54 additions and 654 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ export class AuthService {
const user = await this.userService.findOrCreateByPhone(phone);
const accessToken = await this.issueToken(user.id.toString(), AuthEntityType.USER);
const accessToken = await this.issueToken(user.id, AuthEntityType.USER);
return { success: true, message: 'User registered successfully!', accessToken };
}