run prettier formatting on all files

This commit is contained in:
Amruth Pillai
2023-07-13 08:54:37 +02:00
parent 984078db76
commit 161ca0ee28
37 changed files with 166 additions and 1047 deletions
+2 -2
View File
@@ -19,7 +19,7 @@ export class UsersService {
@InjectRepository(User) private userRepository: Repository<User>,
private schedulerRegistry: SchedulerRegistry,
private mailService: MailService,
private dataSource: DataSource
private dataSource: DataSource,
) {}
async findById(id: number): Promise<User> {
@@ -115,7 +115,7 @@ export class UsersService {
throw new HttpException(
'Please wait at least 30 minutes before resetting your password again.',
HttpStatus.TOO_MANY_REQUESTS
HttpStatus.TOO_MANY_REQUESTS,
);
} finally {
await queryRunner.release();