0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-02 20:19:07 +02:00

Add CreationDate to cipher response JSON

Upstream PR: https://github.com/bitwarden/server/pull/2142
This commit is contained in:
Jeremy Lin 2022-10-12 00:17:09 -07:00
parent 382e6107fe
commit f49eb8eb4d
No known key found for this signature in database

View file

@ -160,6 +160,7 @@ impl Cipher {
"Object": "cipherDetails",
"Id": self.uuid,
"Type": self.atype,
"CreationDate": format_date(&self.created_at),
"RevisionDate": format_date(&self.updated_at),
"DeletedDate": self.deleted_at.map_or(Value::Null, |d| Value::String(format_date(&d))),
"FolderId": if let Some(cipher_sync_data) = cipher_sync_data { cipher_sync_data.cipher_folders.get(&self.uuid).map(|c| c.to_string() ) } else { self.get_folder_uuid(user_uuid, conn).await },