From 6a8c65493f2194c065705bfd180b4106e9db6478 Mon Sep 17 00:00:00 2001 From: theycallmesteve <59837464+theycallmesteve@users.noreply.github.com> Date: Fri, 8 May 2020 13:37:40 -0400 Subject: [PATCH] Rename collection_user_details to collection_read_only to reflect the response model --- src/api/core/organizations.rs | 2 +- src/db/models/organization.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/core/organizations.rs b/src/api/core/organizations.rs index cdbaebd0..06988462 100644 --- a/src/api/core/organizations.rs +++ b/src/api/core/organizations.rs @@ -374,7 +374,7 @@ fn get_collection_users(org_id: String, coll_id: String, _headers: AdminHeaders, .map(|col_user| { UserOrganization::find_by_user_and_org(&col_user.user_uuid, &org_id, &conn) .unwrap() - .to_json_collection_user_details(col_user.read_only) + .to_json_read_only(col_user.read_only) }) .collect(); diff --git a/src/db/models/organization.rs b/src/db/models/organization.rs index 4ff0c56b..043ee3c1 100644 --- a/src/db/models/organization.rs +++ b/src/db/models/organization.rs @@ -304,7 +304,7 @@ impl UserOrganization { }) } - pub fn to_json_collection_user_details(&self, read_only: bool) -> Value { + pub fn to_json_read_only(&self, read_only: bool) -> Value { json!({ "Id": self.uuid, "ReadOnly": read_only