aboutsummaryrefslogtreecommitdiff
path: root/src/api/core/organizations.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/core/organizations.rs')
-rw-r--r--src/api/core/organizations.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/core/organizations.rs b/src/api/core/organizations.rs
index 3784e74e..afd2d388 100644
--- a/src/api/core/organizations.rs
+++ b/src/api/core/organizations.rs
@@ -358,7 +358,7 @@ async fn get_org_collections_details(org_id: &str, headers: ManagerHeadersLoose,
Vec::with_capacity(0)
};
- let mut json_object = col.to_json();
+ let mut json_object = col.to_json_details(&headers.user.uuid, None, &mut conn).await;
json_object["assigned"] = json!(assigned);
json_object["users"] = json!(users);
json_object["groups"] = json!(groups);
@@ -680,7 +680,7 @@ async fn get_org_collection_detail(
let assigned = Collection::can_access_collection(&user_org, &collection.uuid, &mut conn).await;
- let mut json_object = collection.to_json();
+ let mut json_object = collection.to_json_details(&headers.user.uuid, None, &mut conn).await;
json_object["assigned"] = json!(assigned);
json_object["users"] = json!(users);
json_object["groups"] = json!(groups);