aboutsummaryrefslogtreecommitdiff
path: root/runserver.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2022-01-02 22:23:57 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2022-01-02 22:23:57 +0100
commit75d9f3aa69271970d7b8e5422780f062c4a98f01 (patch)
treeb37d91c455cf6cc3f36627ec3aa033109e839523 /runserver.py
parentadded .editorconfig file (diff)
downloadnewspipe-75d9f3aa69271970d7b8e5422780f062c4a98f01.tar.gz
newspipe-75d9f3aa69271970d7b8e5422780f062c4a98f01.tar.bz2
newspipe-75d9f3aa69271970d7b8e5422780f062c4a98f01.zip
Added new blueprint for future stats and added a new
bar chart in the history page.
Diffstat (limited to 'runserver.py')
-rwxr-xr-xrunserver.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/runserver.py b/runserver.py
index 89b8f553..32e5e8e7 100755
--- a/runserver.py
+++ b/runserver.py
@@ -49,6 +49,7 @@ with application.app_context():
application.register_blueprint(views.user_bp)
application.register_blueprint(views.bookmarks_bp)
application.register_blueprint(views.bookmark_bp)
+ application.register_blueprint(views.stats_bp)
register_commands(application)
bgstack15