Skip to content

Commit

Permalink
Merge pull request #44 from DhafinFK/master
Browse files Browse the repository at this point in the history
returned admin feature
  • Loading branch information
DhafinFK authored Aug 7, 2024
2 parents 9320367 + b9198fb commit 7fcd6c6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
from app.views.auth import router_auth
from app.views.main import router_main
from app.views.review import router_review
from app.views.admin import router_admin
from app.cron import cron
from uploader.views import router_uploader

Expand Down Expand Up @@ -86,6 +87,7 @@
app.register_blueprint(router_main, url_prefix=app.config["BASE_PATH"])
app.register_blueprint(router_uploader, url_prefix=app.config["BASE_PATH"])
app.register_blueprint(router_review, url_prefix=app.config["BASE_PATH"])
app.register_blueprint(router_admin, url_prefix=app.config["BASE_PATH"])
app.register_blueprint(cron)

CORS(app)
Expand Down

0 comments on commit 7fcd6c6

Please sign in to comment.