Skip to content

Commit

Permalink
chore(stale-flags): add stale flags app to installed apps (#3508)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewelwell authored Mar 11, 2024
1 parent 321af7e commit 42ab1d0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions api/app/settings/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -916,6 +916,9 @@
if WORKFLOWS_LOGIC_INSTALLED:
INSTALLED_APPS.append("workflows_logic")

if importlib.util.find_spec("workflows_logic.stale_flags") is not None:
INSTALLED_APPS.append("workflows_logic.stale_flags")

# Additional functionality for restricting authentication to a set of authentication methods in Flagsmith SaaS
AUTH_CONTROLLER_INSTALLED = importlib.util.find_spec("auth_controller") is not None
if AUTH_CONTROLLER_INSTALLED:
Expand Down

0 comments on commit 42ab1d0

Please sign in to comment.