diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c905ad7a4..bab441b84 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,7 +3,7 @@ name: Python package on: [push] env: - EXAMPLE_IMAGE_NAME: ghcr.io/descope/py-example:0.1.1 + EXAMPLE_IMAGE_NAME: ghcr.io/descope/py-example:0.1.2 jobs: build: diff --git a/samples/otp_web_sample_app.py b/samples/otp_web_sample_app.py index 80e1db3fe..d49e98a6e 100644 --- a/samples/otp_web_sample_app.py +++ b/samples/otp_web_sample_app.py @@ -77,7 +77,7 @@ def signup(): return Response("This is SignUp API handling", 200) -@APP.route("/api/signin", methods=["POST"]) +@APP.route("/otp/signin", methods=["POST"]) def signin(): data = request.get_json(force=True) email = data.get("email", None)