1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-04 20:50:21 -05:00

Remove unneccessary methods from the IOrganizationIntegrationConfigurationRepository

This commit is contained in:
Brant DeBow 2025-03-19 14:11:24 -04:00
parent 890134eaa6
commit 61a621b04b
No known key found for this signature in database
GPG Key ID: 94411BB25947C72B

View File

@ -9,8 +9,4 @@ public interface IOrganizationIntegrationConfigurationRepository
{
Task<List<IntegrationConfiguration<T>>> GetConfigurationsAsync<T>(IntegrationType integrationType,
Guid organizationId, EventType eventType);
Task<IEnumerable<IntegrationConfiguration<T>>> GetAllConfigurationsAsync<T>(Guid organizationId);
Task AddConfigurationAsync<T>(Guid organizationId, IntegrationType integrationType, EventType eventType, IntegrationConfiguration<T> configuration);
Task UpdateConfigurationAsync<T>(IntegrationConfiguration<T> configuration);
Task DeleteConfigurationAsync(Guid id);
}