mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
Add CreationDate to CipherResponse (#2142)
This commit is contained in:
parent
3fc24d3264
commit
0ea70f68f1
@ -60,6 +60,7 @@ public class CipherMiniResponseModel : ResponseModel
|
|||||||
OrganizationId = cipher.OrganizationId?.ToString();
|
OrganizationId = cipher.OrganizationId?.ToString();
|
||||||
Attachments = AttachmentResponseModel.FromCipher(cipher, globalSettings);
|
Attachments = AttachmentResponseModel.FromCipher(cipher, globalSettings);
|
||||||
OrganizationUseTotp = orgUseTotp;
|
OrganizationUseTotp = orgUseTotp;
|
||||||
|
CreationDate = cipher.CreationDate;
|
||||||
DeletedDate = cipher.DeletedDate;
|
DeletedDate = cipher.DeletedDate;
|
||||||
Reprompt = cipher.Reprompt.GetValueOrDefault(CipherRepromptType.None);
|
Reprompt = cipher.Reprompt.GetValueOrDefault(CipherRepromptType.None);
|
||||||
}
|
}
|
||||||
@ -79,6 +80,7 @@ public class CipherMiniResponseModel : ResponseModel
|
|||||||
public IEnumerable<AttachmentResponseModel> Attachments { get; set; }
|
public IEnumerable<AttachmentResponseModel> Attachments { get; set; }
|
||||||
public bool OrganizationUseTotp { get; set; }
|
public bool OrganizationUseTotp { get; set; }
|
||||||
public DateTime RevisionDate { get; set; }
|
public DateTime RevisionDate { get; set; }
|
||||||
|
public DateTime CreationDate { get; set; }
|
||||||
public DateTime? DeletedDate { get; set; }
|
public DateTime? DeletedDate { get; set; }
|
||||||
public CipherRepromptType Reprompt { get; set; }
|
public CipherRepromptType Reprompt { get; set; }
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user