mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-09-11 12:46:19 +00:00
Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
1e247f5c0d
1 changed files with 17 additions and 0 deletions
|
@ -277,6 +277,23 @@
|
||||||
|
|
||||||
return generatedEmails;
|
return generatedEmails;
|
||||||
},
|
},
|
||||||
|
async getDBClientIps(email) {
|
||||||
|
const msg = await HttpUtil.post(`/panel/inbound/clientIps/${email}`);
|
||||||
|
if (!msg.success) {
|
||||||
|
document.getElementById("clientIPs").value = msg.obj;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let ips = msg.obj;
|
||||||
|
if (typeof ips === 'string' && ips.startsWith('[') && ips.endsWith(']')) {
|
||||||
|
try {
|
||||||
|
ips = JSON.parse(ips);
|
||||||
|
ips = Array.isArray(ips) ? ips.join("\n") : ips;
|
||||||
|
} catch (e) {
|
||||||
|
console.error('Error parsing JSON:', e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
document.getElementById("clientIPs").value = ips;
|
||||||
|
},
|
||||||
async clearDBClientIps(email) {
|
async clearDBClientIps(email) {
|
||||||
try {
|
try {
|
||||||
const msg = await HttpUtil.post(`/panel/inbound/clearClientIps/${email}`);
|
const msg = await HttpUtil.post(`/panel/inbound/clearClientIps/${email}`);
|
||||||
|
|
Loading…
Reference in a new issue