mirror of
https://github.com/bitwarden/server.git
synced 2025-07-07 10:55:43 -05:00
fix warnings
This commit is contained in:
@ -49,9 +49,10 @@ namespace Bit.Core.Repositories.EntityFramework
|
||||
}
|
||||
}
|
||||
|
||||
public async Task UpdateStorageAsync(Guid id)
|
||||
public Task UpdateStorageAsync(Guid id)
|
||||
{
|
||||
// TODO
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
|
||||
public async Task<ICollection<DataModel.OrganizationAbility>> GetManyAbilitiesAsync()
|
||||
|
@ -83,9 +83,10 @@ namespace Bit.Core.Repositories.EntityFramework
|
||||
}
|
||||
}
|
||||
|
||||
public async Task UpdateStorageAsync(Guid id)
|
||||
public Task UpdateStorageAsync(Guid id)
|
||||
{
|
||||
// TODO
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
|
||||
public async Task UpdateRenewalReminderDateAsync(Guid id, DateTime renewalReminderDate)
|
||||
|
Reference in New Issue
Block a user