mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 13:41:13 -07:00
Improved the status page with the suggestion from #29
This commit is contained in:
parent
8f7098d048
commit
c4f57169ad
6 changed files with 28 additions and 3 deletions
|
@ -27,6 +27,8 @@
|
|||
using System.Dynamic;
|
||||
using System.Linq;
|
||||
|
||||
using MarkdownSharp;
|
||||
|
||||
using Nancy;
|
||||
using Nancy.Extensions;
|
||||
using Nancy.ModelBinding;
|
||||
|
@ -376,6 +378,8 @@ namespace PlexRequests.UI.Modules
|
|||
{
|
||||
var checker = new StatusChecker();
|
||||
var status = checker.GetStatus();
|
||||
var md = new Markdown();
|
||||
status.ReleaseNotes = md.Transform(status.ReleaseNotes);
|
||||
return View["Status", status];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue