Disco.Services.JobQueueExtensions.CanEditRemovedComment C# (CSharp) Method

CanEditRemovedComment() public static method

public static CanEditRemovedComment ( this jqj ) : bool
jqj this
return bool
        public static bool CanEditRemovedComment(this JobQueueJob jqj)
        {
            if (!jqj.RemovedDate.HasValue)
                return false;

            return jqj.CanEditComments();
        }
        public static void OnEditAddedComment(this JobQueueJob jqj, string AddedComment)