From b8e465e50cbff02e5161075b4dfa122203b51e81 Mon Sep 17 00:00:00 2001 From: Lili Date: Mon, 20 Mar 2023 17:41:56 +0100 Subject: [PATCH] rename owncast_redeem_dashboard->tlapbot_dashboard --- tlapbot/__init__.py | 2 +- tlapbot/{owncast_redeem_dashboard.py => tlapbot_dashboard.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tlapbot/{owncast_redeem_dashboard.py => tlapbot_dashboard.py} (100%) diff --git a/tlapbot/__init__.py b/tlapbot/__init__.py index efd8c99..1302ca9 100644 --- a/tlapbot/__init__.py +++ b/tlapbot/__init__.py @@ -44,7 +44,7 @@ def create_app(test_config=None): from . import owncast_webhooks from . import owncast_redeem_dashboard app.register_blueprint(owncast_webhooks.bp) - app.register_blueprint(owncast_redeem_dashboard.bp) + app.register_blueprint(tlapbot_dashboard.bp) # add db CLI commands from . import db diff --git a/tlapbot/owncast_redeem_dashboard.py b/tlapbot/tlapbot_dashboard.py similarity index 100% rename from tlapbot/owncast_redeem_dashboard.py rename to tlapbot/tlapbot_dashboard.py