removed get spaces from community

This commit is contained in:
hannathkadher
2024-10-29 18:13:13 +04:00
parent 9bd598da31
commit a486b24ef8
8 changed files with 38 additions and 151 deletions

View File

@ -10,7 +10,7 @@ export class ControllerRoute {
};
static COMMUNITY = class {
public static readonly ROUTE = 'community';
public static readonly ROUTE = 'communities';
static ACTIONS = class {
public static readonly GET_COMMUNITY_BY_ID_SUMMARY =
'Get community by community community uuid';
@ -40,7 +40,7 @@ export class ControllerRoute {
};
static COMMUNITY_SPACE = class {
public static readonly ROUTE = 'community/:communityUuid/space';
public static readonly ROUTE = 'communities/:communityUuid/space';
static ACTIONS = class {
public static readonly GET_COMMUNITY_SPACES_HIERARCHY_SUMMARY =
'Fetch hierarchical structure of spaces within a community.';
@ -111,6 +111,12 @@ export class ControllerRoute {
'Generate a new invitation code for a specific space';
public static readonly CREATE_INVITATION_CODE_SPACE_DESCRIPTION =
'This endpoint generates a new 6-character invitation code for a space identified by its UUID and stores it in the space entity';
public static readonly GET_COMMUNITY_SPACES_HIERARCHY_SUMMARY =
'Fetch hierarchical structure of spaces within a community.';
public static readonly GET_COMMUNITY_SPACES_HIERARCHY_DESCRIPTION =
'retrieves all the spaces associated with a given community, organized into a hierarchical structure.';
};
};