mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 07:33:11 +08:00
* Move OrganizationUser domain to AC Team ownership * Namespaces will be updated in a separate commit
23 lines
784 B
C#
23 lines
784 B
C#
using Bit.Core.Enums;
|
|
using Bit.Infrastructure.EntityFramework.Models;
|
|
|
|
namespace Bit.Infrastructure.EntityFramework.Repositories.Queries;
|
|
|
|
public class OrganizationUserReadOccupiedSmSeatCountByOrganizationIdQuery : IQuery<OrganizationUser>
|
|
{
|
|
private readonly Guid _organizationId;
|
|
|
|
public OrganizationUserReadOccupiedSmSeatCountByOrganizationIdQuery(Guid organizationId)
|
|
{
|
|
_organizationId = organizationId;
|
|
}
|
|
|
|
public IQueryable<OrganizationUser> Run(DatabaseContext dbContext)
|
|
{
|
|
var query = from ou in dbContext.OrganizationUsers
|
|
where ou.OrganizationId == _organizationId && ou.Status >= OrganizationUserStatusType.Invited && ou.AccessSecretsManager == true
|
|
select ou;
|
|
return query;
|
|
}
|
|
}
|