Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHamidreza Ghavami <70919649+hamid-gh98@users.noreply.github.com>2023-05-12 21:06:05 +0300
committerHamidreza Ghavami <70919649+hamid-gh98@users.noreply.github.com>2023-05-12 21:15:32 +0300
commitb0871a6ef650e3776fd0f76799e698c20bed1fd2 (patch)
treecc81b1f5033ba3b853019a0ca69dcb40207b45c3 /web/html/xui/client_modal.html
parent288374d5fa6eedb3131326e60437c0acf058d32f (diff)
Change route path '/xui' to '/panel'
Diffstat (limited to 'web/html/xui/client_modal.html')
-rw-r--r--web/html/xui/client_modal.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/html/xui/client_modal.html b/web/html/xui/client_modal.html
index 89175f31..f7faf888 100644
--- a/web/html/xui/client_modal.html
+++ b/web/html/xui/client_modal.html
@@ -135,7 +135,7 @@
client.email = string;
},
async getDBClientIps(email, event) {
- const msg = await HttpUtil.post('/xui/inbound/clientIps/' + email);
+ const msg = await HttpUtil.post('/panel/inbound/clientIps/' + email);
if (!msg.success) {
return;
}
@@ -149,7 +149,7 @@
}
},
async clearDBClientIps(email) {
- const msg = await HttpUtil.post('/xui/inbound/clearClientIps/' + email);
+ const msg = await HttpUtil.post('/panel/inbound/clearClientIps/' + email);
if (!msg.success) {
return;
}
@@ -164,7 +164,7 @@
cancelText: '{{ i18n "cancel"}}',
onOk: async () => {
iconElement.disabled = true;
- const msg = await HttpUtil.postWithModal('/xui/inbound/' + dbInboundId + '/resetClientTraffic/' + email);
+ const msg = await HttpUtil.postWithModal('/panel/inbound/' + dbInboundId + '/resetClientTraffic/' + email);
if (msg.success) {
this.clientModal.clientStats.up = 0;
this.clientModal.clientStats.down = 0;