This commit is contained in:
NikolajDanger
2022-05-31 10:01:12 +02:00
parent e70708d937
commit 06b40f5158
5 changed files with 7 additions and 10 deletions

View File

@ -6,7 +6,7 @@ import sys, datetime
Group = Blueprint('Group', __name__)
@Group.route("/groups", methods=['GET'])
def index():
def groups():
groups = current_user.get_groups_joinable()
return render_template('groups.html', groups=groups)