Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-26 05:50:29 +01:00
Merge pull request #165 from mprasil/shared_edit_fix
Fix editing shared cipher (fixes #164)
Dieser Commit ist enthalten in:
Commit
0a3b84b815
1 geänderte Dateien mit 3 neuen und 1 gelöschten Zeilen
|
@ -136,7 +136,9 @@ fn update_cipher_from_data(cipher: &mut Cipher, data: CipherData, headers: &Head
|
||||||
if let Some(org_id) = data.OrganizationId {
|
if let Some(org_id) = data.OrganizationId {
|
||||||
match UserOrganization::find_by_user_and_org(&headers.user.uuid, &org_id, &conn) {
|
match UserOrganization::find_by_user_and_org(&headers.user.uuid, &org_id, &conn) {
|
||||||
None => err!("You don't have permission to add item to organization"),
|
None => err!("You don't have permission to add item to organization"),
|
||||||
Some(org_user) => if shared_to_collection || org_user.has_full_access() {
|
Some(org_user) => if shared_to_collection
|
||||||
|
|| org_user.has_full_access()
|
||||||
|
|| cipher.is_write_accessible_to_user(&headers.user.uuid, &conn) {
|
||||||
cipher.organization_uuid = Some(org_id);
|
cipher.organization_uuid = Some(org_id);
|
||||||
cipher.user_uuid = None;
|
cipher.user_uuid = None;
|
||||||
} else {
|
} else {
|
||||||
|
|
Laden …
In neuem Issue referenzieren