added space model controller for create

This commit is contained in:
hannathkadher
2024-12-11 11:06:41 +04:00
parent b2a422f71b
commit 02faca3397
7 changed files with 92 additions and 2 deletions

View File

@ -266,6 +266,16 @@ export class ControllerRoute {
};
};
static SPACE_MODEL = class {
public static readonly ROUTE = '/projects/:projectUuid/space-models';
static ACTIONS = class {
public static readonly CREATE_SPACE_MODEL_SUMMARY =
'Create a New Space Model';
public static readonly CREATE_SPACE_MODEL_DESCRIPTION =
'This endpoint allows you to create a new space model within a specified project. A space model defines the structure of spaces, including subspaces, products, and product items, and is uniquely identifiable within the project.';
};
};
static PRODUCT = class {
public static readonly ROUTE = 'products';
static ACTIONS = class {