Browse Source
Fix cipher creation on new android app
pull/4670/head
Daniel García
10 months ago
No known key found for this signature in database
GPG Key ID: FC8A7D14C3CD543A
1 changed files with
2 additions and
0 deletions
-
src/api/core/ciphers.rs
|
@ -797,7 +797,9 @@ async fn post_collections_admin( |
|
|
#[derive(Deserialize)] |
|
|
#[derive(Deserialize)] |
|
|
#[serde(rename_all = "camelCase")] |
|
|
#[serde(rename_all = "camelCase")] |
|
|
struct ShareCipherData { |
|
|
struct ShareCipherData { |
|
|
|
|
|
#[serde(alias = "Cipher")] |
|
|
cipher: CipherData, |
|
|
cipher: CipherData, |
|
|
|
|
|
#[serde(alias = "CollectionIds")] |
|
|
collection_ids: Vec<String>, |
|
|
collection_ids: Vec<String>, |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|