1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-26 12:55:17 +01:00

fix ValidateOrganizationsAsync on job

This commit is contained in:
Kyle Spearrin 2018-08-29 09:43:04 -04:00
parent 0983a35cf3
commit 2972f7789f

View File

@ -21,7 +21,7 @@ namespace Bit.Api.Jobs
protected async override Task ExecuteJobAsync(IJobExecutionContext context)
{
await _licensingService.ValidateUsersAsync();
await _licensingService.ValidateOrganizationsAsync();
}
}
}