fix(controller): add missing closing brace in UsersController class

This commit is contained in:
Nils-Johan Gynther
2026-04-18 14:51:17 +02:00
parent 537a4f8ab6
commit a67f9cb2c1
+1
View File
@@ -149,3 +149,4 @@ export class UsersController {
const updated = await this.usersService.updateEmail(id, dto.email); const updated = await this.usersService.updateEmail(id, dto.email);
return { id: updated.id, username: updated.username, email: updated.email }; return { id: updated.id, username: updated.username, email: updated.email };
} }
}