mirror of
https://github.com/bitwarden/server
synced 2025-12-15 15:53:59 +00:00
* [PM-3779] Added IOrganizationDomainRepository.GetDomainByIdAndOrganizationIdAsync and SQL stored procedure * [PM-3779] Changed GetOrganizationDomainByIdQuery to also take OrgId as a parameter. Updated existing unit tests and added new. Updated controller to match command changes * [PM-3779] Removed type from url routes * [PM-3779] Renamed IGetOrganizationDomainByIdAndOrganizationIdQuery to IGetOrganizationDomainByIdOrganizationIdQuery * [PM-3779] Renamed GetOrganizationDomainByIdOrganizationIdQueryTests file and added more tests
9 lines
217 B
C#
9 lines
217 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.OrganizationFeatures.OrganizationDomains.Interfaces;
|
|
|
|
public interface IDeleteOrganizationDomainCommand
|
|
{
|
|
Task DeleteAsync(OrganizationDomain organizationDomain);
|
|
}
|