mirror of
https://github.com/bitwarden/server.git
synced 2025-02-01 23:31:41 +01:00
dont throw exceptions on noopmailservice
This commit is contained in:
parent
0b4ba6399b
commit
b7ac04955a
@ -29,12 +29,12 @@ namespace Bit.Core.Services
|
||||
|
||||
public Task SendOrganizationAcceptedEmailAsync(string organizationName, string userEmail, IEnumerable<string> adminEmails)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
|
||||
public Task SendOrganizationConfirmedEmailAsync(string organizationName, string email)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
|
||||
public Task SendOrganizationInviteEmailAsync(string organizationName, OrganizationUser orgUser, string token)
|
||||
|
Loading…
Reference in New Issue
Block a user