(20250221) Trying to resolve CORS problem in the MikroTik in Kenya.

This commit is contained in:
2025-02-21 17:23:55 +05:30
parent 3f23e186ba
commit f07f0979d8
2 changed files with 10 additions and 3 deletions
+4 -1
View File
@@ -187,7 +187,10 @@ APP_VERSION = constants.APP_VERSION
# The Quart app:
app = Quart(__name__, template_folder = r"../views_v2")
app = cors(app)
app = cors(
app,
allow_origin = ["wifi.hiranitelcom.co.ke"]
)
# Mail Blueprints:
app.register_blueprint(mail_oauth_request_bp, url_prefix = f"/{MODULE_BASE}/mail")