From 82a715d52bfe79045e50243d49f0fa8652f6cd38 Mon Sep 17 00:00:00 2001 From: ameye Date: Fri, 6 Dec 2024 10:37:09 -0500 Subject: [PATCH] added more ends --- services/web/project/__init__.py | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/services/web/project/__init__.py b/services/web/project/__init__.py index ddde1b0..7d1fca1 100644 --- a/services/web/project/__init__.py +++ b/services/web/project/__init__.py @@ -25,12 +25,32 @@ class User(db.Model): def __init__(self, email): self.email = email - @app.route("/") def hello_world(): return jsonify(hello="ameye world") +@app.route("/auth/login") +def statrt_login(): + return jsonify(hello="ameye world") + +@app.route("/auth/register") +def start_register(): + return jsonify(hello="ameye world") + +@app.route("/auth/resetpass") +def start_resetpass(): + return jsonify(hello="ameye world") + +@app.route("/account") +def account(): + return jsonify(hello="ameye world") + +@app.route("/account/dash") +def dashboard(): + return jsonify(hello="ameye world") + + @app.route("/static/") def staticfiles(filename): return send_from_directory(app.config["STATIC_FOLDER"], filename)