Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-24 05:30:28 +01:00
Merge pull request #3678 from BlackDex/fix-org-api-creation-postgres
Fix Org API Key generation on PosgreSQL
Dieser Commit ist enthalten in:
Commit
61f9081827
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
|
@ -804,7 +804,7 @@ impl OrganizationApiKey {
|
|||
let value = OrganizationApiKeyDb::to_db(self);
|
||||
diesel::insert_into(organization_api_key::table)
|
||||
.values(&value)
|
||||
.on_conflict(organization_api_key::uuid)
|
||||
.on_conflict((organization_api_key::uuid, organization_api_key::org_uuid))
|
||||
.do_update()
|
||||
.set(&value)
|
||||
.execute(conn)
|
||||
|
|
Laden …
In neuem Issue referenzieren