Browse Source

Fixed #2151

pull/2169/head
BlackDex 3 years ago
parent
commit
4bd8eae07e
No known key found for this signature in database GPG Key ID: 58C80A2AA6C765E1
  1. 2
      src/api/core/organizations.rs

2
src/api/core/organizations.rs

@ -235,7 +235,7 @@ fn get_user_collections(headers: Headers, conn: DbConn) -> Json<Value> {
}
#[get("/organizations/<org_id>/collections")]
fn get_org_collections(org_id: String, _headers: AdminHeaders, conn: DbConn) -> Json<Value> {
fn get_org_collections(org_id: String, _headers: ManagerHeadersLoose, conn: DbConn) -> Json<Value> {
Json(json!({
"Data":
Collection::find_by_organization(&org_id, &conn)

Loading…
Cancel
Save