mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-09-03 17:07:15 +00:00
feat(clients): orphan cleanup + export/import via CodeMirror modals
Add three client-management actions to the Clients page More menu:
- Delete unattached clients: removes every client with no inbound
attachment, cascading its traffic rows, IP log, and external links
(POST /clients/delOrphans).
- Export clients: shows the {client, inboundIds} list in a read-only
CodeMirror viewer with copy/download (GET /clients/export returns the
array in the standard envelope).
- Import clients: pastes that JSON into an editable CodeMirror editor,
mirroring Import an Inbound (POST /clients/import takes a { data }
body). Attached clients go through the create-and-attach path; items
with no inboundIds are restored as bare records; existing emails are
never overwritten and are reported as skipped.
Document the new endpoints in api-docs and translate the new strings
into all supported languages.
This commit is contained in:
@@ -828,6 +828,12 @@
|
||||
"delDepleted": "Delete depleted",
|
||||
"delDepletedConfirmTitle": "Delete depleted clients?",
|
||||
"delDepletedConfirmContent": "Removes every client whose traffic quota is exhausted or whose expiry has passed. This cannot be undone.",
|
||||
"exportClients": "Export clients",
|
||||
"importClients": "Import clients",
|
||||
"import": "Import",
|
||||
"delOrphans": "Delete unattached clients",
|
||||
"delOrphansConfirmTitle": "Delete clients without an inbound?",
|
||||
"delOrphansConfirmContent": "Removes every client that is not attached to any inbound, along with its traffic record. This cannot be undone.",
|
||||
"auth": "Auth",
|
||||
"hysteriaAuth": "Hysteria Auth",
|
||||
"uuid": "UUID",
|
||||
@@ -850,7 +856,10 @@
|
||||
"bulkCreatedMixed": "{ok} created, {failed} failed",
|
||||
"bulkAdjusted": "{count} clients adjusted",
|
||||
"bulkAdjustedMixed": "{ok} adjusted, {skipped} skipped",
|
||||
"delDepleted": "{count} depleted clients deleted"
|
||||
"delDepleted": "{count} depleted clients deleted",
|
||||
"delOrphans": "{count} unattached clients deleted",
|
||||
"imported": "{count} clients imported",
|
||||
"importedMixed": "{ok} imported, {failed} skipped"
|
||||
}
|
||||
},
|
||||
"groups": {
|
||||
|
||||
Reference in New Issue
Block a user