mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-11-26 19:44:55 +00:00
fixes bugs and add project id staging
This commit is contained in:
@ -38,7 +38,7 @@ class SpacesAPI {
|
||||
final path = ApiEndpoints.listSubspace
|
||||
.replaceFirst('{communityUuid}', communityId)
|
||||
.replaceFirst('{spaceUuid}', spaceId)
|
||||
.replaceAll('{projectUuid}', TempConst.projectId);
|
||||
.replaceAll('{projectUuid}', TempConst.projectIdDev);
|
||||
|
||||
final response = await _httpService.get(
|
||||
path: path,
|
||||
@ -71,7 +71,7 @@ class SpacesAPI {
|
||||
path: ApiEndpoints.invitationCode
|
||||
.replaceAll('{unitUuid}', unitId)
|
||||
.replaceAll('{communityUuid}', communityId)
|
||||
.replaceAll('{projectUuid}', TempConst.projectId),
|
||||
.replaceAll('{projectUuid}', TempConst.projectIdDev),
|
||||
showServerMessage: false,
|
||||
expectedResponseModel: (json) {
|
||||
if (json != null && json['data'] != null) {
|
||||
|
||||
Reference in New Issue
Block a user