From cb1c68f295de8a0f9366bc4067ae06d026ef3134 Mon Sep 17 00:00:00 2001 From: Glax Date: Sun, 18 May 2025 16:06:39 +0200 Subject: [PATCH] Remove Job.DependenciesFulfilled --- API/Schema/Jobs/Job.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/API/Schema/Jobs/Job.cs b/API/Schema/Jobs/Job.cs index 7b70db2..697a9d3 100644 --- a/API/Schema/Jobs/Job.cs +++ b/API/Schema/Jobs/Job.cs @@ -35,7 +35,6 @@ public abstract class Job [Required] public bool Enabled { get; internal set; } = true; [JsonIgnore] [NotMapped] internal bool IsCompleted => state is >= (JobState)128 and < (JobState)192; - [JsonIgnore] [NotMapped] internal bool DependenciesFulfilled => DependsOnJobs.All(j => j.IsCompleted); [NotMapped] [JsonIgnore] protected ILog Log { get; init; } [NotMapped] [JsonIgnore] protected ILazyLoader LazyLoader { get; init; }