Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-22 05:10:29 +01:00
Merge pull request #3609 from farodin91/add-user-to-collection-during-creation
add user to collection during creation
Dieser Commit ist enthalten in:
Commit
664b480c71
1 geänderte Dateien mit 4 neuen und 0 gelöschten Zeilen
|
@ -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()))
|
||||
}
|
||||
|
||||
|
|
Laden …
In neuem Issue referenzieren