Move friends flows to server-rendered Flask/Jinja routes
This commit is contained in:
+3
-1
@@ -26,9 +26,11 @@ def create_app():
|
||||
|
||||
from .routes.auth import auth_bp
|
||||
from .routes.main import main_bp
|
||||
from .routes.friends import friends_bp
|
||||
|
||||
app.register_blueprint(auth_bp)
|
||||
app.register_blueprint(main_bp)
|
||||
app.register_blueprint(auth_bp)
|
||||
app.register_blueprint(friends_bp)
|
||||
|
||||
init_db(app)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user