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:
Diffstat (limited to 'web/controller/xray_setting.go')
-rw-r--r--web/controller/xray_setting.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/controller/xray_setting.go b/web/controller/xray_setting.go
index 5b2d1036..2b5e0db1 100644
--- a/web/controller/xray_setting.go
+++ b/web/controller/xray_setting.go
@@ -23,13 +23,13 @@ func NewXraySettingController(g *gin.RouterGroup) *XraySettingController {
func (a *XraySettingController) initRouter(g *gin.RouterGroup) {
g = g.Group("/xray")
+ g.GET("/getDefaultJsonConfig", a.getDefaultXrayConfig)
+ g.GET("/getOutboundsTraffic", a.getOutboundsTraffic)
+ g.GET("/getXrayResult", a.getXrayResult)
g.POST("/", a.getXraySetting)
- g.POST("/update", a.updateSetting)
- g.GET("/getXrayResult", a.getXrayResult)
- g.GET("/getDefaultJsonConfig", a.getDefaultXrayConfig)
g.POST("/warp/:action", a.warp)
- g.GET("/getOutboundsTraffic", a.getOutboundsTraffic)
+ g.POST("/update", a.updateSetting)
g.POST("/resetOutboundsTraffic", a.resetOutboundsTraffic)
}