mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00

The purpose of this PR is to create server endpoints for creating, reading, updating, and deleting access policies for projects.
17 lines
676 B
C#
17 lines
676 B
C#
using Bit.Commercial.Infrastructure.EntityFramework.Repositories;
|
|
using Bit.Core.Repositories;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Bit.Commercial.Infrastructure.EntityFramework;
|
|
|
|
public static class CommercialEFServiceCollectionExtensions
|
|
{
|
|
public static void AddCommercialEFRepositories(this IServiceCollection services)
|
|
{
|
|
services.AddSingleton<IAccessPolicyRepository, AccessPolicyRepository>();
|
|
services.AddSingleton<ISecretRepository, SecretRepository>();
|
|
services.AddSingleton<IProjectRepository, ProjectRepository>();
|
|
services.AddSingleton<IServiceAccountRepository, ServiceAccountRepository>();
|
|
}
|
|
}
|