1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 08:32:50 -05:00

get rid of premium renewal jobs for braintree

This commit is contained in:
Kyle Spearrin
2019-02-14 10:18:27 -05:00
parent f2aac6b8a0
commit f70ececa9d
8 changed files with 13 additions and 99 deletions

View File

@ -78,18 +78,6 @@ namespace Bit.Core.Repositories.SqlServer
}
}
public async Task<ICollection<User>> GetManyByPremiumRenewalAsync()
{
using(var connection = new SqlConnection(ConnectionString))
{
var results = await connection.QueryAsync<User>(
"[dbo].[User_ReadByPremiumRenewal]",
commandType: CommandType.StoredProcedure);
return results.ToList();
}
}
public async Task<string> GetPublicKeyAsync(Guid id)
{
using(var connection = new SqlConnection(ConnectionString))