fix: missing v1 prefix
This commit is contained in:
parent
2c6586d9ee
commit
784c245557
3 changed files with 3 additions and 3 deletions
|
|
@ -31,7 +31,7 @@ type ProductGroupUpdate = {
|
||||||
remark?: string;
|
remark?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
@Route("api/product-group")
|
@Route("api/v1/product-group")
|
||||||
@Tags("Product Group")
|
@Tags("Product Group")
|
||||||
@Security("keycloak")
|
@Security("keycloak")
|
||||||
export class ProductGroup extends Controller {
|
export class ProductGroup extends Controller {
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ type ProductTypeUpdate = {
|
||||||
remark?: string;
|
remark?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
@Route("api/product-type")
|
@Route("api/v1/product-type")
|
||||||
@Tags("Product Type")
|
@Tags("Product Type")
|
||||||
@Security("keycloak")
|
@Security("keycloak")
|
||||||
export class ProductType extends Controller {
|
export class ProductType extends Controller {
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ function imageLocation(id: string) {
|
||||||
return `service/img-${id}`;
|
return `service/img-${id}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Route("api/service")
|
@Route("api/v1/service")
|
||||||
@Tags("Service")
|
@Tags("Service")
|
||||||
@Security("keycloak")
|
@Security("keycloak")
|
||||||
export class ServiceController extends Controller {
|
export class ServiceController extends Controller {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue