(20241213) SMS sending ready.

This commit is contained in:
2024-12-13 19:44:22 +05:30
parent f47e81c411
commit 8c01ca5135
6 changed files with 104 additions and 36 deletions
+4 -4
View File
@@ -10,7 +10,7 @@
OBJECTIVE:
To receive auth details for various software.
To receive auth details for various financial institutions.
REFERENCES:
@@ -81,7 +81,7 @@ import asyncio
# Related to Quart:
sw_auth_bp = Blueprint("sw_auth", __name__)
fi_auth_bp = Blueprint("fi_auth", __name__)
# *****************************************************************************************************************
@@ -101,7 +101,7 @@ sw_auth_bp = Blueprint("sw_auth", __name__)
# *****************************************************************************************************************
@sw_auth_bp.record_once
@fi_auth_bp.record_once
def init(blueprint_setup_state):
# This gets called when the blueprint is registered.
@@ -112,7 +112,7 @@ def init(blueprint_setup_state):
# ---------------------------------------------------------------------------------------------------------------------
@sw_auth_bp.route("/auth", methods = ["POST"])
@fi_auth_bp.route("/auth", methods = ["POST"])
@set_api_version(api_version = "1.0.0")
@read_input(sanitize_headers = False, sanitize_data = False)
@get_session_info(key = "X-Session-Token", session_coro = "get_session")