Commit 762c4962 authored by chenweijian's avatar chenweijian

Merge branch 'fix/party_apply' into 'master'

Fix/party apply

See merge request !33
parents 34dc6f1b 13a5c316
...@@ -85,9 +85,9 @@ func InviteApply(c *gin.Context) (*mycontext.MyContext, error) { ...@@ -85,9 +85,9 @@ func InviteApply(c *gin.Context) (*mycontext.MyContext, error) {
model.Log.Errorf("InviteApply param:%v", param) model.Log.Errorf("InviteApply param:%v", param)
return myCtx, bizerr.InviteApplyCodeInvalid return myCtx, bizerr.InviteApplyCodeInvalid
} }
if user.ID != myUserId { //只能自己提交 //if user.ID != myUserId { //只能自己提交
return myCtx, bizerr.InvalidParameter // return myCtx, bizerr.InvalidParameter
} //}
if newUser.ID == 0 || user.ID == 0 { if newUser.ID == 0 || user.ID == 0 {
model.Log.Errorf("InviteApply param:%v", param) model.Log.Errorf("InviteApply param:%v", param)
return myCtx, bizerr.InvalidParameter return myCtx, bizerr.InvalidParameter
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment