mirror of
https://github.com/bitwarden/server.git
synced 2025-05-09 05:32:24 -05:00

* [NO LOGIC] Rename MultiOrganizationEnterprise to BusinessUnit * [Core] Add IMailService.SendBusinessUnitConversionInviteAsync * [Core] Add BusinessUnitConverter * [Admin] Add new permission * [Admin] Add BusinessUnitConverterController * [Admin] Add Convert to Business Unit button to Organization edit page * [Api] Add OrganizationBillingController.SetupBusinessUnitAsync action * [Multi] Propagate provider type to sync response * [Multi] Put updates behind feature flag * [Tests] BusinessUnitConverterTests * Run dotnet format * Fixing post-main merge compilation failure
12 lines
448 B
C#
12 lines
448 B
C#
using Bit.Core.AdminConsole.Entities.Provider;
|
|
using Bit.Core.Billing.Enums;
|
|
|
|
namespace Bit.Core.AdminConsole.Providers.Interfaces;
|
|
|
|
public interface ICreateProviderCommand
|
|
{
|
|
Task CreateMspAsync(Provider provider, string ownerEmail, int teamsMinimumSeats, int enterpriseMinimumSeats);
|
|
Task CreateResellerAsync(Provider provider);
|
|
Task CreateBusinessUnitAsync(Provider provider, string ownerEmail, PlanType plan, int minimumSeats);
|
|
}
|