From b6094e5aa8580a85d19f5ad0ee6815af5eec46c7 Mon Sep 17 00:00:00 2001 From: ashilkn Date: Fri, 24 Jan 2025 11:44:00 +0530 Subject: [PATCH] [mob][photos] Remove internal flag from join links feature --- mobile/lib/services/collections_service.dart | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mobile/lib/services/collections_service.dart b/mobile/lib/services/collections_service.dart index 8bc86b6eb6..8079c925f6 100644 --- a/mobile/lib/services/collections_service.dart +++ b/mobile/lib/services/collections_service.dart @@ -949,9 +949,8 @@ class CollectionsService { data: { "collectionID": collection.id, "enableCollect": enableCollect, - "enableJoin": flagService.internalUser, - "joinViaLink": - flagService.internalUser, // todo: remove after server deployment + "enableJoin": true, + // todo: remove after server deployment }, ); collection.publicURLs?.add(PublicURL.fromMap(response.data["result"]));