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) {
|
$('#requestToken').click(function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
var url = createBaseUrl(base, "requestauth");
|
var url = createBaseUrl(base, "admin/requestauth");
|
||||||
var $form = $("#mainForm");
|
var $form = $("#mainForm");
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: $form.prop("method"),
|
type: $form.prop("method"),
|
||||||
|
@ -149,7 +149,7 @@
|
||||||
|
|
||||||
function loadUserList() {
|
function loadUserList() {
|
||||||
$('#users').html("");
|
$('#users').html("");
|
||||||
var url = "getusers";
|
var url = "admin/getusers";
|
||||||
url = createBaseUrl(base, url);
|
url = createBaseUrl(base, url);
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: "Get",
|
type: "Get",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue