We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9cdc84 commit c43f320Copy full SHA for c43f320
.github/workflows/ci.yaml
@@ -3,7 +3,7 @@ name: Python package
3
on: [push]
4
5
env:
6
- EXAMPLE_IMAGE_NAME: ghcr.io/descope/py-example:0.1.1
+ EXAMPLE_IMAGE_NAME: ghcr.io/descope/py-example:0.1.2
7
8
jobs:
9
build:
samples/otp_web_sample_app.py
@@ -77,7 +77,7 @@ def signup():
77
return Response("This is SignUp API handling", 200)
78
79
80
-@APP.route("/api/signin", methods=["POST"])
+@APP.route("/otp/signin", methods=["POST"])
81
def signin():
82
data = request.get_json(force=True)
83
email = data.get("email", None)
0 commit comments