Add terms and privacy legal documents

This commit is contained in:
Jeremy Zhang
2017-09-12 04:06:29 +00:00
parent 8a7e3322b9
commit 2e4781d499
4 changed files with 241 additions and 1 deletions

View File

@ -47,6 +47,14 @@ def index():
def about():
return render_template("about.html.j2")
@app.route("/terms")
def terms():
return render_template("terms_and_conditions.html.j2")
@app.route("/privacy")
def privacy():
return render_template("privacy_policy.html.j2")
@app.before_request
def before_request():
discord_api.init_discordrest()