|
|
@ -97,6 +97,8 @@ func GetUsersInfo(c *gin.Context) {
|
|
|
|
|
|
|
|
|
|
|
|
func UpdateUserInfo(c *gin.Context) {
|
|
|
|
func UpdateUserInfo(c *gin.Context) {
|
|
|
|
params := api.UpdateSelfUserInfoReq{}
|
|
|
|
params := api.UpdateSelfUserInfoReq{}
|
|
|
|
|
|
|
|
var t int32
|
|
|
|
|
|
|
|
params.GlobalRecvMsgOpt = &t
|
|
|
|
if err := c.BindJSON(¶ms); err != nil {
|
|
|
|
if err := c.BindJSON(¶ms); err != nil {
|
|
|
|
log.NewError("0", "BindJSON failed ", err.Error())
|
|
|
|
log.NewError("0", "BindJSON failed ", err.Error())
|
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": err.Error()})
|
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": err.Error()})
|
|
|
|