1
0
mirror of https://github.com/bitwarden/server synced 2025-12-13 06:43:45 +00:00

no azure queue service for now

This commit is contained in:
Kyle Spearrin
2018-08-02 21:03:04 -04:00
parent 0cde13e0c6
commit a4e91aa570
2 changed files with 9 additions and 5 deletions

View File

@@ -154,12 +154,14 @@ namespace Bit.Core.Services
public Task SendPayloadToUserAsync(string userId, PushType type, object payload, string identifier)
{
throw new NotImplementedException();
// Noop
return Task.FromResult(0);
}
public Task SendPayloadToOrganizationAsync(string orgId, PushType type, object payload, string identifier)
{
throw new NotImplementedException();
// Noop
return Task.FromResult(0);
}
}
}