1
0
mirror of https://github.com/bitwarden/server synced 2025-12-25 20:53:16 +00:00

group access all and readonly schema changes

This commit is contained in:
Kyle Spearrin
2017-05-10 12:17:10 -04:00
parent ba99b332e1
commit 08943ed305
10 changed files with 34 additions and 5 deletions

View File

@@ -17,11 +17,13 @@ namespace Bit.Core.Models.Api
Id = group.Id.ToString();
OrganizationId = group.OrganizationId.ToString();
Name = group.Name;
AccessAll = group.AccessAll;
}
public string Id { get; set; }
public string OrganizationId { get; set; }
public string Name { get; set; }
public bool AccessAll { get; set; }
}
public class GroupDetailsResponseModel : GroupResponseModel