mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 15:13:19 +08:00
* [PM-17562] Add GET endpoints for event integrations * Default to null for Service * Respond to PR Feedback
30 lines
1.2 KiB
C#
30 lines
1.2 KiB
C#
using AutoMapper;
|
|
using Bit.Core.Repositories;
|
|
using Bit.Infrastructure.EntityFramework.AdminConsole.Models;
|
|
using Bit.Infrastructure.EntityFramework.AdminConsole.Repositories.Queries;
|
|
using Bit.Infrastructure.EntityFramework.Repositories;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Bit.Infrastructure.EntityFramework.AdminConsole.Repositories;
|
|
|
|
public class OrganizationIntegrationRepository :
|
|
Repository<Core.AdminConsole.Entities.OrganizationIntegration, OrganizationIntegration, Guid>,
|
|
IOrganizationIntegrationRepository
|
|
{
|
|
public OrganizationIntegrationRepository(IServiceScopeFactory serviceScopeFactory, IMapper mapper)
|
|
: base(serviceScopeFactory, mapper, (DatabaseContext context) => context.OrganizationIntegrations)
|
|
{
|
|
}
|
|
|
|
public async Task<List<Core.AdminConsole.Entities.OrganizationIntegration>> GetManyByOrganizationAsync(Guid organizationId)
|
|
{
|
|
using (var scope = ServiceScopeFactory.CreateScope())
|
|
{
|
|
var dbContext = GetDatabaseContext(scope);
|
|
var query = new OrganizationIntegrationReadManyByOrganizationIdQuery(organizationId);
|
|
return await query.Run(dbContext).ToListAsync();
|
|
}
|
|
}
|
|
}
|