We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8db5d9a commit a7f7e63Copy full SHA for a7f7e63
pygeoapi/flask_app.py
@@ -73,7 +73,12 @@
73
static_folder=STATIC_FOLDER,
74
url_prefix=API_RULES.get_url_prefix('flask')
75
)
76
-ADMIN_BLUEPRINT = Blueprint('admin', __name__, static_folder=STATIC_FOLDER)
+ADMIN_BLUEPRINT = Blueprint(
77
+ 'admin',
78
+ __name__,
79
+ static_folder=STATIC_FOLDER,
80
+ url_prefix=API_RULES.get_url_prefix('flask')
81
+)
82
83
# CORS: optionally enable from config.
84
if CONFIG['server'].get('cors', False):
0 commit comments