mirror of
https://github.com/bitwarden/server.git
synced 2025-07-03 17:12:49 -05:00
renaming collection linq predicates
This commit is contained in:
@ -12,11 +12,11 @@ namespace Bit.Core.Models.Api
|
||||
|
||||
public IEnumerable<CollectionUser> ToCollectionUsers()
|
||||
{
|
||||
return Collections.Select(s => new CollectionUser
|
||||
return Collections.Select(c => new CollectionUser
|
||||
{
|
||||
OrganizationUserId = new Guid(UserId),
|
||||
CollectionId = new Guid(s.CollectionId),
|
||||
ReadOnly = s.ReadOnly
|
||||
CollectionId = new Guid(c.CollectionId),
|
||||
ReadOnly = c.ReadOnly
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user