summaryrefslogtreecommitdiff
path: root/src/controllers
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2024-02-02 17:05:41 -0600
committerHombreLaser <sebastian-440@live.com>2024-02-02 17:05:41 -0600
commit6b84c9708342716b5aabd015f42fb6b46088af19 (patch)
treee917e6eb7860afb240b4f0686a3cb6f830ac49f4 /src/controllers
parent0655cb74a5b76a99811a905060200e8a80e8590e (diff)
Fix bluepring registering
Diffstat (limited to 'src/controllers')
-rw-r--r--src/controllers/__init__.py5
-rw-r--r--src/controllers/comments_controller.py12
-rw-r--r--src/controllers/dashboard_controller.py6
3 files changed, 18 insertions, 5 deletions
diff --git a/src/controllers/__init__.py b/src/controllers/__init__.py
index d9ad692..0fa79a7 100644
--- a/src/controllers/__init__.py
+++ b/src/controllers/__init__.py
@@ -1,3 +1,2 @@
-from flask import Blueprint, current_app
-
-dashboard_blueprint = Blueprint('dashboard_controller', '__dashboard_controller__')
+import src.controllers.comments_controller
+import src.controllers.dashboard_controller
diff --git a/src/controllers/comments_controller.py b/src/controllers/comments_controller.py
new file mode 100644
index 0000000..9077ba1
--- /dev/null
+++ b/src/controllers/comments_controller.py
@@ -0,0 +1,12 @@
+from flask import Blueprint, request
+from src.database.models import Blog, Comment
+
+
+comments_blueprint = Blueprint('comments_controller',
+ '__comments_controller__')
+
+
+@comments_blueprint.post('/<post>/comments/')
+def create(post):
+ breakpoint()
+ print(request.form)
diff --git a/src/controllers/dashboard_controller.py b/src/controllers/dashboard_controller.py
index 888e388..bef7441 100644
--- a/src/controllers/dashboard_controller.py
+++ b/src/controllers/dashboard_controller.py
@@ -1,6 +1,8 @@
from flask import Blueprint
-from src.controllers import dashboard_blueprint
-from src.database.models.blog import Blog
+from src.database.models import Blog
+
+dashboard_blueprint = Blueprint('dashboard_controller',
+ '__dashboard_controller__')
@dashboard_blueprint.get('/dashboard')
def index():