Include UniAuth callback
This commit is contained in:
parent
b66f852256
commit
f19e4e4dd4
|
@ -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__":
|
if __name__ == "__main__":
|
||||||
app.run(host="0.0.0.0")
|
app.run(host="0.0.0.0")
|
||||||
|
|
Loading…
Reference in a new issue