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;
|
||||
};
|
||||
|
||||
@Route("api/product-group")
|
||||
@Route("api/v1/product-group")
|
||||
@Tags("Product Group")
|
||||
@Security("keycloak")
|
||||
export class ProductGroup extends Controller {
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ type ProductTypeUpdate = {
|
|||
remark?: string;
|
||||
};
|
||||
|
||||
@Route("api/product-type")
|
||||
@Route("api/v1/product-type")
|
||||
@Tags("Product Type")
|
||||
@Security("keycloak")
|
||||
export class ProductType extends Controller {
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ function imageLocation(id: string) {
|
|||
return `service/img-${id}`;
|
||||
}
|
||||
|
||||
@Route("api/service")
|
||||
@Route("api/v1/service")
|
||||
@Tags("Service")
|
||||
@Security("keycloak")
|
||||
export class ServiceController extends Controller {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue