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/util.go')
-rw-r--r--web/controller/util.go18
1 files changed, 6 insertions, 12 deletions
diff --git a/web/controller/util.go b/web/controller/util.go
index da77189b..a32c9270 100644
--- a/web/controller/util.go
+++ b/web/controller/util.go
@@ -4,6 +4,7 @@ import (
"net"
"net/http"
"strings"
+
"x-ui/config"
"x-ui/logger"
"x-ui/web/entity"
@@ -48,18 +49,11 @@ func jsonMsgObj(c *gin.Context, msg string, obj interface{}, err error) {
c.JSON(http.StatusOK, m)
}
-func pureJsonMsg(c *gin.Context, success bool, msg string) {
- if success {
- c.JSON(http.StatusOK, entity.Msg{
- Success: true,
- Msg: msg,
- })
- } else {
- c.JSON(http.StatusOK, entity.Msg{
- Success: false,
- Msg: msg,
- })
- }
+func pureJsonMsg(c *gin.Context, statusCode int, success bool, msg string) {
+ c.JSON(statusCode, entity.Msg{
+ Success: success,
+ Msg: msg,
+ })
}
func html(c *gin.Context, name string, title string, data gin.H) {