mirror of
https://github.com/ChrispyBacon-dev/DockFlare.git
synced 2026-04-28 03:39:32 +00:00
exemption for API v2 endpoints in the gating logic condition
This commit is contained in:
parent
74aec141d8
commit
7ec2a29930
1 changed files with 1 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ def gating_logic():
|
|||
|
||||
if not is_configured:
|
||||
|
||||
if request.endpoint and not request.endpoint.startswith('setup.') and request.endpoint != 'static':
|
||||
if request.endpoint and not request.endpoint.startswith('setup.') and request.endpoint != 'static' and not request.endpoint.startswith('api_v2.'):
|
||||
try:
|
||||
if getattr(current_app, 'import_from_env', False):
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue