mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-13 00:32:57 -07:00
Fixed #757
This commit is contained in:
parent
c0070868ab
commit
9e6854458a
2 changed files with 4 additions and 6 deletions
|
@ -28,6 +28,7 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
using Newtonsoft.Json;
|
||||||
using PlexRequests.Core.Models;
|
using PlexRequests.Core.Models;
|
||||||
|
|
||||||
namespace PlexRequests.Core.SettingModels
|
namespace PlexRequests.Core.SettingModels
|
||||||
|
@ -35,9 +36,9 @@ namespace PlexRequests.Core.SettingModels
|
||||||
public class SystemSettings : Settings
|
public class SystemSettings : Settings
|
||||||
{
|
{
|
||||||
public Branches Branch { get; set; }
|
public Branches Branch { get; set; }
|
||||||
|
public string Version { get; set; }
|
||||||
public StatusModel Status { get; set; }
|
public StatusModel Status { get; set; }
|
||||||
|
[JsonIgnore]
|
||||||
public List<BranchDropdown> BranchDropdown { get; set; }
|
public List<BranchDropdown> BranchDropdown { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -21,10 +21,7 @@
|
||||||
<label for="logLevel" class="control-label">Log Level</label>
|
<label for="logLevel" class="control-label">Log Level</label>
|
||||||
<div id="logLevel">
|
<div id="logLevel">
|
||||||
<select class="form-control" id="selected">
|
<select class="form-control" id="selected">
|
||||||
@if (Model)
|
<option id="Trace" value="0">Trace (ONLY USE FOR DEVELOPMENT)</option>
|
||||||
{
|
|
||||||
<option id="Trace" value="0">Trace</option>
|
|
||||||
}
|
|
||||||
<option id="Debug" value="1">Debug</option>
|
<option id="Debug" value="1">Debug</option>
|
||||||
<option id="Info" value="2">Info</option>
|
<option id="Info" value="2">Info</option>
|
||||||
<option id="Warn" value="3">Warn</option>
|
<option id="Warn" value="3">Warn</option>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue