chore: ticket service but not tested

This commit is contained in:
mahyargdz
2025-01-28 20:08:43 +03:30
parent 239099bb15
commit 1d11509371
28 changed files with 368 additions and 73 deletions
+3 -2
View File
@@ -48,9 +48,10 @@ export class UsersController {
}
@ApiOperation({ summary: "get all user group" })
@HttpCode(HttpStatus.OK)
@AuthGuards()
@Roles(RoleEnum.ADMIN)
@Get("user-group")
UserGroups() {
return this.usersService.getUserGroup();
return this.usersService.getUserGroups();
}
}