Files
notifications-admin/app/main/views/feedback.py
T

11 lines
238 B
Python
Raw Normal View History

from flask import render_template
2018-02-20 11:22:17 +00:00
2016-04-26 10:32:26 +01:00
from app.main import main
from app.utils.user import user_is_logged_in
2020-04-16 14:58:22 +01:00
2016-04-26 10:32:26 +01:00
@main.route("/support", methods=["GET"])
@user_is_logged_in
2016-12-12 11:18:25 +00:00
def support():
return render_template("views/support/index.html")