mirror of
https://github.com/bitwarden/server.git
synced 2025-07-17 23:50:58 -05:00
Adding and setting DefaultUserCollectionEmail in the response model (#6074)
This commit is contained in:
@ -23,6 +23,7 @@ public class CollectionResponseModel : ResponseModel
|
|||||||
Name = collection.Name;
|
Name = collection.Name;
|
||||||
ExternalId = collection.ExternalId;
|
ExternalId = collection.ExternalId;
|
||||||
Type = collection.Type;
|
Type = collection.Type;
|
||||||
|
DefaultUserCollectionEmail = collection.DefaultUserCollectionEmail;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Guid Id { get; set; }
|
public Guid Id { get; set; }
|
||||||
@ -30,6 +31,7 @@ public class CollectionResponseModel : ResponseModel
|
|||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
public string ExternalId { get; set; }
|
public string ExternalId { get; set; }
|
||||||
public CollectionType Type { get; set; }
|
public CollectionType Type { get; set; }
|
||||||
|
public string DefaultUserCollectionEmail { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Reference in New Issue
Block a user