mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
11 lines
238 B
Python
11 lines
238 B
Python
from flask import render_template
|
|
|
|
from app.main import main
|
|
from app.utils.user import user_is_logged_in
|
|
|
|
|
|
@main.route("/support", methods=["GET"])
|
|
@user_is_logged_in
|
|
def support():
|
|
return render_template("views/support/index.html")
|