From 123949aa86b1b806b3ad28a09b810405a91464fa Mon Sep 17 00:00:00 2001 From: hannathkadher Date: Tue, 11 Mar 2025 22:05:36 +0400 Subject: [PATCH] update space with a space model --- .../all_spaces/bloc/space_management_bloc.dart | 1 + lib/services/space_mana_api.dart | 2 ++ 2 files changed, 3 insertions(+) diff --git a/lib/pages/spaces_management/all_spaces/bloc/space_management_bloc.dart b/lib/pages/spaces_management/all_spaces/bloc/space_management_bloc.dart index 40566d7f..48208c87 100644 --- a/lib/pages/spaces_management/all_spaces/bloc/space_management_bloc.dart +++ b/lib/pages/spaces_management/all_spaces/bloc/space_management_bloc.dart @@ -609,6 +609,7 @@ class SpaceManagementBloc extends Bloc? tags, List? subspaces, + String? spaceModelUuid, required String projectId}) async { try { final body = { @@ -238,6 +239,7 @@ class CommunitySpaceManagementApi { 'icon': icon, 'subspace': subspaces, 'tags': tags, + 'spaceModelUuid': spaceModelUuid, }; if (parentId != null) { body['parentUuid'] = parentId;