add to route and related endpoints and color and assets

This commit is contained in:
Rafeek-Khoudare
2025-07-07 15:40:04 +03:00
parent e4a27b5651
commit 7cf4d0b5a9
5 changed files with 16 additions and 1 deletions

View File

@ -46,7 +46,8 @@ abstract class ApiEndpoints {
// Community Module
static const String createCommunity = '/projects/{projectId}/communities';
static const String getCommunityList = '/projects/{projectId}/communities';
static const String getCommunityListv2 = '/projects/{projectId}/communities/v2';
static const String getCommunityListv2 =
'/projects/{projectId}/communities/v2';
static const String getCommunityById =
'/projects/{projectId}/communities/{communityId}';
static const String updateCommunity =
@ -138,4 +139,7 @@ abstract class ApiEndpoints {
static const String assignDeviceToRoom =
'/projects/{projectUuid}/communities/{communityUuid}/spaces/{spaceUuid}/subspaces/{subSpaceUuid}/devices/{deviceUuid}';
static const String saveSchedule = '/schedule/{deviceUuid}';
////booking System
static const String addBookableSpaces = '/bookable-spaces';
}