1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-16 01:51:21 +01:00

Do not require uri and password for sites

This commit is contained in:
Kyle Spearrin 2016-10-12 22:41:57 -04:00
parent 8c14b2b177
commit 80e1ba16ad

View File

@ -15,14 +15,12 @@ namespace Bit.Api.Models
[EncryptedString]
[StringLength(300)]
public string Name { get; set; }
[Required]
[EncryptedString]
[StringLength(5000)]
public string Uri { get; set; }
[EncryptedString]
[StringLength(200)]
public string Username { get; set; }
[Required]
[EncryptedString]
[StringLength(300)]
public string Password { get; set; }