feat: Implement cuser management with role updates, activation, and deactivation.

This commit is contained in:
JakkrapartXD 2026-01-15 15:26:30 +07:00
parent a59b144ebf
commit 1caeac6226
5 changed files with 100 additions and 18 deletions

View file

@ -13,7 +13,7 @@ import { profileUpdateSchema, changePasswordSchema } from "../validators/user.va
import { ValidationError } from '../middleware/errorHandler';
@Route('api/user')
@Tags('Usermanagement')
@Tags('User')
export class UserController {
private userService = new UserService();