This commit is contained in:
parent
e8e4f21643
commit
95ccf2865d
@ -10,7 +10,10 @@ auth = APIBlueprint('auth', __name__)
|
||||
@auth.input(WechatLoginIn)
|
||||
@auth.output(WechatLoginOut)
|
||||
def wechat_login(data):
|
||||
result = rpc.admin.wechat_login(data['code'])
|
||||
try:
|
||||
result = rpc.admin.wechat_login(data['code'])
|
||||
except Exception as e:
|
||||
raise e
|
||||
return result
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user