From 571602a36897aa8f72fe37e2e022cbb8545dcbba Mon Sep 17 00:00:00 2001 From: grgr Date: Sun, 8 Jan 2023 19:55:25 +0100 Subject: [PATCH] fetch all the topic tags in the edit mode --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index b33686d..70fe706 100644 --- a/app.py +++ b/app.py @@ -41,7 +41,7 @@ app = Flask(__name__) app.config['SECRET KEY'] = 'this should be a secret random string' # register the middleware to prefix all the requests with our base_url -app.wsgi_app = PrefixMiddleware(app.wsgi_app, prefix='/soupboat/library') +app.wsgi_app = PrefixMiddleware(app.wsgi_app, prefix='/soupboat/library-db') @ app.route("/")