Include UniAuth callback

This commit is contained in:
Edward Betts 2024-02-18 22:07:38 +00:00
parent b66f852256
commit f19e4e4dd4

View file

@ -352,5 +352,11 @@ def holiday_list() -> str:
)
@app.route("/callback")
def auth_callback() -> tuple[str, int] | werkzeug.Response:
"""Process the authentication callback."""
return UniAuth.auth.auth_callback()
if __name__ == "__main__":
app.run(host="0.0.0.0")