mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 16:12:49 -05:00
dont throw exceptions on noopmailservice
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user