feat: add IsActive field to UserClubFeatures for admin management

This commit is contained in:
masoodafar-web
2025-12-12 01:40:26 +03:30
parent aa66ca10c8
commit ff1c1d5d61
68 changed files with 11456 additions and 198 deletions
@@ -38,9 +38,9 @@ public class AdminController : ControllerBase
{
_logger.LogInformation("🔧 Manual trigger requested by admin for week: {WeekNumber}", weekNumber ?? "previous");
// Enqueue immediate job execution
// Enqueue immediate job execution with specified week number
var jobId = _backgroundJobClient.Enqueue<WeeklyCommissionJob>(
job => job.ExecuteAsync(CancellationToken.None));
job => job.ExecuteAsync(weekNumber, CancellationToken.None));
_logger.LogInformation("✅ Job enqueued with ID: {JobId}", jobId);