create user

This commit is contained in:
2021-12-08 11:14:12 +07:00
parent 10984f65a5
commit 988d545b64
8 changed files with 43 additions and 14 deletions

View File

@@ -9,14 +9,14 @@ import {
ParseUUIDPipe,
HttpStatus, Query,
} from '@nestjs/common';
import { ConfigurableService } from './configurable.service';
import { RoleService } from './roles.service';
@Controller({
path: 'config',
version: '1',
})
export class ConfigurableController {
constructor(private readonly usersService: ConfigurableService) {}
constructor(private readonly usersService: RoleService) {}
@Get()
async findAll(@Query('page') page: number) {