Restrict user list page to moderators only

This commit is contained in:
rubenwardy 2018-05-13 16:56:18 +01:00
parent 167a9f14cd
commit f3c433de06
No known key found for this signature in database
GPG Key ID: A1E29D52FF81513C
2 changed files with 4 additions and 1 deletions

View File

@ -6,6 +6,7 @@
{% block content %}
<ul>
<a href="{{ url_for('switch_user_page') }}">Sign in as another user</a>
<li><a href="{{ url_for('user_list_page') }}">User list</a></li>
<li><a href="{{ url_for('switch_user_page') }}">Sign in as another user</a></li>
</ul>
{% endblock %}

View File

@ -8,6 +8,7 @@ from flask_wtf import FlaskForm
from flask_user.forms import RegisterForm
from wtforms import *
from wtforms.validators import *
from .utils import rank_required
class MyRegisterForm(RegisterForm):
display_name = StringField("Display name")
@ -19,6 +20,7 @@ class UserProfileForm(FlaskForm):
submit = SubmitField("Save")
@app.route("/users/", methods=["GET"])
@rank_required(UserRank.MODERATOR)
def user_list_page():
users = User.query.all()
return render_template("users/list.html", users=users)