mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
22 lines
824 B
C#
22 lines
824 B
C#
using Bit.Core.Context;
|
|
|
|
namespace Bit.Api.AdminConsole.Context;
|
|
|
|
public class ProviderOrganizationContext(ICurrentContext currentContext) : IProviderOrganizationContext
|
|
{
|
|
/// <inheritdoc/>
|
|
public async Task<bool> ProviderUserForOrgAsync(Guid orgId)
|
|
{
|
|
// If the user doesn't have any ProviderUser claims (in relation to the provider), they can't have a provider
|
|
// relationship to any organization.
|
|
if (currentContext.Providers.Count == 0)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// This is just a wrapper around CurrentContext for now, but once permission checks are moved out of that class
|
|
// we should be able to move the underlying logic here without causing circular dependencies.
|
|
return await currentContext.ProviderUserForOrgAsync(orgId);
|
|
}
|
|
}
|