mirror of
https://github.com/bitwarden/server
synced 2026-01-01 08:03:23 +00:00
[SM-722] Add optional access to secrets for service account lists (#3074)
* Add access to secret count to service account list * dotnet format * refactor into query * Remove duplicate * Add new method to noop
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using Bit.Core.Enums;
|
||||
using Bit.Core.SecretsManager.Models.Data;
|
||||
|
||||
namespace Bit.Core.SecretsManager.Queries.ServiceAccounts.Interfaces;
|
||||
|
||||
public interface IServiceAccountSecretsDetailsQuery
|
||||
{
|
||||
public Task<IEnumerable<ServiceAccountSecretsDetails>> GetManyByOrganizationIdAsync(
|
||||
Guid organizationId, Guid userId, AccessClientType accessClient, bool includeAccessToSecrets);
|
||||
}
|
||||
Reference in New Issue
Block a user