1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Replaced mb3admin.com phoning home with a stub mb3admin.local

This commit is contained in:
Vasily 2018-10-22 02:16:58 +03:00
parent 0dc1237b21
commit c874747379
4 changed files with 7 additions and 7 deletions

View file

@ -38,7 +38,7 @@ define(["fetchHelper", "dom", "registrationServices", "loading", "confirm", "glo
function getPremiereStatus(key) {
var postData = "key=" + key + "&serverId=" + ApiClient.serverId();
return fetchHelper.ajax({
url: "https://mb3admin.com/admin/service/registration/getStatus",
url: "https://mb3admin.local/admin/service/registration/getStatus",
type: "POST",
data: postData,
contentType: "application/x-www-form-urlencoded",
@ -69,7 +69,7 @@ define(["fetchHelper", "dom", "registrationServices", "loading", "confirm", "glo
console.log("after confirm");
var postData = "key=" + key + "&feature=" + feature;
fetchHelper.ajax({
url: "https://mb3admin.com/admin/service/stripe/requestSubCancel",
url: "https://mb3admin.local/admin/service/stripe/requestSubCancel",
type: "POST",
data: postData,
contentType: "application/x-www-form-urlencoded"
@ -90,7 +90,7 @@ define(["fetchHelper", "dom", "registrationServices", "loading", "confirm", "glo
loading.show();
var form = this,
email = form.querySelector("#txtEmail").value,
url = "https://mb3admin.com/admin/service/supporter/retrievekey?email=" + email;
url = "https://mb3admin.local/admin/service/supporter/retrievekey?email=" + email;
return console.log(url), fetchHelper.ajax({
url: url,
type: "POST",