refactor job logs/comments [#145]

This commit is contained in:
Gary Sharp
2025-07-12 16:48:27 +10:00
parent b56e82d5c4
commit 092c6249ee
14 changed files with 575 additions and 638 deletions
@@ -1,8 +0,0 @@
namespace Disco.Web.Areas.API.Models.Job
{
public class CommentPostModel
{
public string Result { get; set; }
public _CommentModel Comment { get; set; }
}
}
@@ -1,10 +0,0 @@
using System.Collections.Generic;
namespace Disco.Web.Areas.API.Models.Job
{
public class CommentsModel
{
public string Result { get; set; }
public List<_CommentModel> Comments { get; set; }
}
}
@@ -1,32 +0,0 @@
using System;
namespace Disco.Web.Areas.API.Models.Job
{
public class _CommentModel
{
public int Id { get; set; }
public int JobId { get; set; }
public string AuthorId { get; set; }
public string Author { get; set; }
public DateTime Timestamp { get; set; }
public string Comments { get; set; }
public string HtmlComments { get; set; }
public long TimestampUnixEpoc { get { return this.Timestamp.ToUnixEpoc(); } }
public string TimestampFull { get { return Timestamp.ToFullDateTime(); } }
public static _CommentModel FromJobLog(Disco.Models.Repository.JobLog jl)
{
return new _CommentModel
{
Id = jl.Id,
JobId = jl.JobId,
AuthorId = jl.TechUserId,
Author = jl.TechUser.ToString(),
Timestamp = jl.Timestamp,
Comments = jl.Comments,
HtmlComments = jl.Comments.ToHtmlComment().ToString()
};
}
}
}