add Job Tasks to enable the execution of adhoc asynchronous site-based workloads

This commit is contained in:
sbwalker
2026-02-19 08:23:11 -05:00
parent 13a58ed099
commit 0fd97d34d9
23 changed files with 633 additions and 252 deletions

View File

@@ -61,8 +61,8 @@ namespace Oqtane.Repository
public void DeleteJobLog(int jobLogId)
{
JobLog joblog = _db.JobLog.Find(jobLogId);
_db.JobLog.Remove(joblog);
JobLog jobLog = _db.JobLog.Find(jobLogId);
_db.JobLog.Remove(jobLog);
_db.SaveChanges();
}
}