aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/oauth2/routes.py
blob: 4c4b877b31102a5457134573cb758f1303dda416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""Routes for the OAuth2 auth system in GN3"""
from flask import Blueprint

from .data import data
from .users import users
from .roles import roles
from .groups import groups
from .toplevel import toplevel
from .resources import resources

oauth2 = Blueprint("oauth2", __name__, template_folder="templates/oauth2")

oauth2.register_blueprint(toplevel, url_prefix="/")
oauth2.register_blueprint(data, url_prefix="/data")
oauth2.register_blueprint(users, url_prefix="/user")
oauth2.register_blueprint(roles, url_prefix="/role")
oauth2.register_blueprint(groups, url_prefix="/group")
oauth2.register_blueprint(resources, url_prefix="/resource")