68256d7abd
Stale Jobs replaces Long-Running Jobs on the homepage. Last Activity is added to the job table.
18 lines
509 B
C#
18 lines
509 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Disco.Models.UI.Config.JobPreferences
|
|
{
|
|
public interface ConfigJobPreferencesIndexModel : BaseUIModel
|
|
{
|
|
int LongRunningJobDaysThreshold { get; set; }
|
|
int StaleJobMinutesThreshold { get; set; }
|
|
|
|
List<KeyValuePair<int, string>> LongRunningJobDaysThresholdOptions();
|
|
List<KeyValuePair<int, string>> StaleJobMinutesThresholdOptions();
|
|
}
|
|
}
|