mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
removed logs
This commit is contained in:
@ -408,9 +408,7 @@ class SpaceManagementBloc
|
||||
|
||||
Future<List<SpaceModel>> saveSpacesHierarchically(
|
||||
List<SpaceModel> spaces, String communityUuid) async {
|
||||
print("space");
|
||||
final orderedSpaces = flattenHierarchy(spaces);
|
||||
print("parent");
|
||||
|
||||
final parentsToDelete = orderedSpaces.where((space) =>
|
||||
space.status == SpaceStatus.deleted &&
|
||||
|
@ -463,9 +463,7 @@ class _CommunityStructureAreaState extends State<CommunityStructureArea> {
|
||||
_markChildrenAsDeleted(space);
|
||||
}
|
||||
}
|
||||
for (var space in spaces) {
|
||||
print("space ${space.name} and ${space.status}");
|
||||
}
|
||||
|
||||
_removeConnectionsForDeletedSpaces();
|
||||
});
|
||||
}
|
||||
|
@ -37,7 +37,6 @@ class SpaceModelManagementApi {
|
||||
|
||||
Future<String?> updateSpaceModel(
|
||||
CreateSpaceTemplateBodyModel spaceModel, String spaceModelUuid) async {
|
||||
print(spaceModel.toJson().toString());
|
||||
final response = await HTTPService().put(
|
||||
path: ApiEndpoints.updateSpaceModel
|
||||
.replaceAll('{projectId}', TempConst.projectId).replaceAll('{spaceModelUuid}', spaceModelUuid),
|
||||
|
Reference in New Issue
Block a user