diff --git a/src/controllers/OrgRootController.ts b/src/controllers/OrgRootController.ts index 8bf34c7c..9d6d139a 100644 --- a/src/controllers/OrgRootController.ts +++ b/src/controllers/OrgRootController.ts @@ -21,7 +21,7 @@ import HttpError from "../interfaces/http-error"; import HttpStatusCode from "../interfaces/http-status"; import { OrgRevision } from "../entities/OrgRevision"; -@Route("api/v1/organization") +@Route("api/v1/org") @Tags("OrgRoot") @Security("bearerAuth") export class OrgRootController extends Controller { diff --git a/src/controllers/OrganizationController.ts b/src/controllers/OrganizationController.ts index 3ad5edfc..ea29d7b1 100644 --- a/src/controllers/OrganizationController.ts +++ b/src/controllers/OrganizationController.ts @@ -113,4 +113,20 @@ export class OrganizationController extends Controller { return error; } } + + /** + * API รายละเอียดโครงสร้าง + * + * @summary ORG_023 - รายละเอียดโครงสร้าง (ADMIN) #25 + * + */ + // @Get() + // async detail(@Path() id: string) { + // try { + + // return new HttpSuccess(); + // } catch (error) { + // return error; + // } + // } }