1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 09:02:48 -05:00

Invite Client owner at time of client org creation (#1488)

This commit is contained in:
Matt Gibson
2021-07-30 08:10:58 -05:00
committed by GitHub
parent fdaf6b14d4
commit 2298c96e30
6 changed files with 42 additions and 8 deletions

View File

@ -25,7 +25,8 @@ namespace Bit.Core.Services
Guid deletingUserId);
Task AddOrganization(Guid providerId, Guid organizationId, Guid addingUserId, string key);
Task<ProviderOrganization> CreateOrganizationAsync(Guid providerId, OrganizationSignup organizationSignup, User user);
Task<ProviderOrganization> CreateOrganizationAsync(Guid providerId, OrganizationSignup organizationSignup,
string clientOwnerEmail, User user);
Task RemoveOrganization(Guid providerId, Guid providerOrganizationId, Guid removingUserId);
}
}