Skip to content
Snippets Groups Projects
Verified Commit 3f0616c8 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Add system check for app base classes

parent 0392be85
No related branches found
No related tags found
1 merge request!154Maintain default data and implement app hooks
from typing import Optional
import django.apps
from django.core.checks import Tags, Warning, register
from .util.apps import AppConfig
@register(Tags.compatibility)
def check_app_configs_base_class(app_configs: Optional[django.apps] = None, **kwargs) -> None:
""" Checks whether all apps derive from AlekSIS's base app config """
results = []
if app_configs is None:
app_configs = django.apps.get_app_configs()
for app_config in app_configs:
if app_config.name.startswith("aleksis.apps.") and not isinstance(app_config, AppConfig):
results.append(
Warning(
"App config %s does not derive from aleksis.core.util.apps.AppConfig.",
hint="Ensure the app uses the correct base class for all registry functionality to work.",
obj=app_config,
id="aleksis.core.W001",
)
)
return results
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment