Skip to content

Commit

Permalink
Change cipher notes to be optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Hinton committed Sep 13, 2023
1 parent a6f3cca commit 0898131
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bitwarden/src/vault/cipher/cipher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub struct Cipher {
pub collection_ids: Vec<Uuid>,

pub name: EncString,
pub notes: EncString,
pub notes: Option<EncString>,

pub r#type: CipherType,
pub login: Option<login::Login>,
Expand Down Expand Up @@ -78,7 +78,7 @@ pub struct CipherView {
pub collection_ids: Vec<Uuid>,

pub name: String,
pub notes: String,
pub notes: Option<String>,

pub r#type: CipherType,
pub login: Option<login::LoginView>,
Expand Down

0 comments on commit 0898131

Please sign in to comment.