File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Python package
33on : [push]
44
55env :
6- EXAMPLE_IMAGE_NAME : ghcr.io/descope/py-example:0.1
6+ EXAMPLE_IMAGE_NAME : ghcr.io/descope/py-example:0.1.1
77
88jobs :
99 build :
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ def handle_auth_error(ex):
3838 return response
3939
4040
41- @APP .route ("/api /signup" , methods = ["POST" ])
41+ @APP .route ("/otp /signup" , methods = ["POST" ])
4242def signup ():
4343 data = request .get_json (force = True )
4444 email = data .get ("email" , None )
@@ -88,7 +88,7 @@ def signuporin():
8888 return jsonify (message = response )
8989
9090
91- @APP .route ("/api /verify" , methods = ["POST" ])
91+ @APP .route ("/otp /verify" , methods = ["POST" ])
9292def verify ():
9393 data = request .get_json (force = True )
9494 email = data .get ("email" , None )
You can’t perform that action at this time.
0 commit comments