mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 05:43:19 -07:00
Fixed an issue with the auth page when running with a reverse proxy
This commit is contained in:
parent
137c4ca093
commit
9ccd837758
1 changed files with 2 additions and 2 deletions
|
@ -122,7 +122,7 @@
|
|||
|
||||
$('#requestToken').click(function (e) {
|
||||
e.preventDefault();
|
||||
var url = createBaseUrl(base, "requestauth");
|
||||
var url = createBaseUrl(base, "admin/requestauth");
|
||||
var $form = $("#mainForm");
|
||||
$.ajax({
|
||||
type: $form.prop("method"),
|
||||
|
@ -149,7 +149,7 @@
|
|||
|
||||
function loadUserList() {
|
||||
$('#users').html("");
|
||||
var url = "getusers";
|
||||
var url = "admin/getusers";
|
||||
url = createBaseUrl(base, url);
|
||||
$.ajax({
|
||||
type: "Get",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue