fix: bug
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
e8e4f21643
commit
95ccf2865d
|
@ -10,7 +10,10 @@ auth = APIBlueprint('auth', __name__)
|
||||||
@auth.input(WechatLoginIn)
|
@auth.input(WechatLoginIn)
|
||||||
@auth.output(WechatLoginOut)
|
@auth.output(WechatLoginOut)
|
||||||
def wechat_login(data):
|
def wechat_login(data):
|
||||||
|
try:
|
||||||
result = rpc.admin.wechat_login(data['code'])
|
result = rpc.admin.wechat_login(data['code'])
|
||||||
|
except Exception as e:
|
||||||
|
raise e
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue