add user to collection during creation

Signed-off-by: Jan Jansen <jan.jansen@gdata.de>
This commit is contained in:
Jan Jansen 2023-06-23 08:26:45 +02:00 committed by Mathijs van Veluw
parent 19e671ff25
commit 84e901b7d2
1 changed files with 4 additions and 0 deletions

View File

@ -424,6 +424,10 @@ async fn post_organization_collections(
.await?;
}
if headers.org_user.atype == UserOrgType::Manager && !headers.org_user.access_all {
CollectionUser::save(&headers.org_user.user_uuid, &collection.uuid, false, false, &mut conn).await?;
}
Ok(Json(collection.to_json()))
}