register project_supervisor endpoints for coordinator view
This commit is contained in:
parent
558fac2c7e
commit
5267e55925
@ -2,8 +2,10 @@ from flask import Blueprint
|
|||||||
|
|
||||||
from .students import bp as students_bp
|
from .students import bp as students_bp
|
||||||
from .groups import bp as groups_bp
|
from .groups import bp as groups_bp
|
||||||
|
from .project_supervisor import bp as project_supervisor_bp
|
||||||
|
|
||||||
bp = Blueprint("coordinator", __name__, url_prefix="/coordinator")
|
bp = Blueprint("coordinator", __name__, url_prefix="/coordinator")
|
||||||
|
|
||||||
bp.register_blueprint(students_bp)
|
bp.register_blueprint(students_bp)
|
||||||
bp.register_blueprint(groups_bp)
|
bp.register_blueprint(groups_bp)
|
||||||
|
bp.register_blueprint(project_supervisor_bp)
|
||||||
|
Loading…
Reference in New Issue
Block a user