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
path: root/xray
diff options
context:
space:
mode:
authorAli Golzar <57574919+aliglzr@users.noreply.github.com>2025-08-28 02:10:50 +0300
committerGitHub <noreply@github.com>2025-08-28 02:10:50 +0300
commit3087c1b123f426b7c1306ab634fb84e7943e4217 (patch)
treece6f33e025bb16f73797a119a41590f03c0b8c9e /xray
parent21983971971b14377b36c8db92c8603f723f955d (diff)
Add all-time traffic for inbounds and clients (#3387)
* feat(db): add allTime field to Inbound and ClientTraffic models * feat(inbound): increment all_time for inbounds and clients on traffic updates calculate correct all_time traffic on migrate command * feat(ui): show all-time traffic column for inbounds and its clients * i18n: add pages.inbounds.allTimeTraffic label across locales * Add All Time Traffic Usage in inbounds page top banner
Diffstat (limited to 'xray')
-rw-r--r--xray/client_traffic.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/xray/client_traffic.go b/xray/client_traffic.go
index 0f2389a0..883de2cc 100644
--- a/xray/client_traffic.go
+++ b/xray/client_traffic.go
@@ -7,6 +7,7 @@ type ClientTraffic struct {
Email string `json:"email" form:"email" gorm:"unique"`
Up int64 `json:"up" form:"up"`
Down int64 `json:"down" form:"down"`
+ AllTime int64 `json:"allTime" form:"allTime"`
ExpiryTime int64 `json:"expiryTime" form:"expiryTime"`
Total int64 `json:"total" form:"total"`
Reset int `json:"reset" form:"reset" gorm:"default:0"`