mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-10 00:56:19 +01:00
Correct main character reset on token invalidation.
Correct interpretation of missing SERVICES_MIGRATED setting. Remove legacy api sync celerybeat scheduled task.
This commit is contained in:
@@ -23,7 +23,7 @@ def optional_dependencies():
|
||||
dependencies = []
|
||||
|
||||
# Skip adding module dependencies if the settings specifies that services have been migrated
|
||||
if not hasattr(settings, 'SERVICES_MIGRATED') or settings.SERVICES_MIGRATED:
|
||||
if getattr(settings, 'SERVICES_MIGRATED', True):
|
||||
return dependencies
|
||||
|
||||
if 'services.modules.xenforo' in installed_apps:
|
||||
|
||||
Reference in New Issue
Block a user