mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 15:56:05 -07:00
Fixed a circular reference issue
This commit is contained in:
parent
63e0d0e531
commit
f834e9635c
2 changed files with 2 additions and 2 deletions
|
@ -148,7 +148,7 @@ namespace PlexRequests.UI.Modules
|
||||||
Get["/authentication", true] = async (x, ct) => await Authentication();
|
Get["/authentication", true] = async (x, ct) => await Authentication();
|
||||||
Post["/authentication", true] = async (x, ct) => await SaveAuthentication();
|
Post["/authentication", true] = async (x, ct) => await SaveAuthentication();
|
||||||
|
|
||||||
Post["/"] = _ => SaveAdmin();
|
Post["/", true] = async (x, ct) => await SaveAdmin();
|
||||||
|
|
||||||
Post["/requestauth"] = _ => RequestAuthToken();
|
Post["/requestauth"] = _ => RequestAuthToken();
|
||||||
|
|
||||||
|
|
|
@ -228,7 +228,7 @@
|
||||||
|
|
||||||
<p class="form-group">A comma separated list of users whose requests do not require approval.</p>
|
<p class="form-group">A comma separated list of users whose requests do not require approval.</p>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="noApprovalUsers" class="control-label">Approval White listed Users</label>
|
<label for="NoApprovalUsers" class="control-label">Approval White listed Users</label>
|
||||||
<div>
|
<div>
|
||||||
<input type="text" class="form-control-custom form-control " id="NoApprovalUsers" name="NoApprovalUsers" placeholder="e.g. John, Bobby" value="@Model.NoApprovalUsers">
|
<input type="text" class="form-control-custom form-control " id="NoApprovalUsers" name="NoApprovalUsers" placeholder="e.g. John, Bobby" value="@Model.NoApprovalUsers">
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue