mirror of
https://github.com/bitwarden/server
synced 2025-12-18 09:13:19 +00:00
[EC-1003] feat: remove externalId from PUT/POST (#2589)
This commit is contained in:
@@ -10,8 +10,6 @@ public class GroupRequestModel
|
||||
public string Name { get; set; }
|
||||
[Required]
|
||||
public bool? AccessAll { get; set; }
|
||||
[StringLength(300)]
|
||||
public string ExternalId { get; set; }
|
||||
public IEnumerable<SelectionReadOnlyRequestModel> Collections { get; set; }
|
||||
public IEnumerable<Guid> Users { get; set; }
|
||||
|
||||
@@ -27,7 +25,6 @@ public class GroupRequestModel
|
||||
{
|
||||
existingGroup.Name = Name;
|
||||
existingGroup.AccessAll = AccessAll.Value;
|
||||
existingGroup.ExternalId = ExternalId;
|
||||
return existingGroup;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user