mirror of
https://github.com/bitwarden/server.git
synced 2024-12-12 15:26:48 +01:00
28 lines
709 B
C#
28 lines
709 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Jobs;
|
|
using Bit.Core.Services;
|
|
using Microsoft.Extensions.Logging;
|
|
using Quartz;
|
|
|
|
namespace Bit.Api.Jobs
|
|
{
|
|
public class ValidateOrganizationsJob : BaseJob
|
|
{
|
|
private readonly ILicensingService _licensingService;
|
|
|
|
public ValidateOrganizationsJob(
|
|
ILicensingService licensingService,
|
|
ILogger<ValidateOrganizationsJob> logger)
|
|
: base(logger)
|
|
{
|
|
_licensingService = licensingService;
|
|
}
|
|
|
|
protected async override Task ExecuteJobAsync(IJobExecutionContext context)
|
|
{
|
|
await _licensingService.ValidateOrganizationsAsync();
|
|
}
|
|
}
|
|
}
|