1
0
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:
Jared McCannon
2025-07-09 16:05:25 -05:00
committed by GitHub
parent 5772c467de
commit f5be1ede2f

View File

@ -23,6 +23,7 @@ public class CollectionResponseModel : ResponseModel
Name = collection.Name;
ExternalId = collection.ExternalId;
Type = collection.Type;
DefaultUserCollectionEmail = collection.DefaultUserCollectionEmail;
}
public Guid Id { get; set; }
@ -30,6 +31,7 @@ public class CollectionResponseModel : ResponseModel
public string Name { get; set; }
public string ExternalId { get; set; }
public CollectionType Type { get; set; }
public string DefaultUserCollectionEmail { get; set; }
}
/// <summary>