mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
4fdafefcd5
Fixes #28
10 lines
244 B
Python
10 lines
244 B
Python
from flask import *
|
|
from flask_user import current_user, login_required
|
|
from app import app
|
|
from app.models import *
|
|
|
|
@app.route("/notifications/")
|
|
@login_required
|
|
def notifications_page():
|
|
return render_template("notifications/list.html")
|