schon/vibes_auth/apps.py
Egor fureunoir Gorbunov 3ab95e9b56 Features: 1) Added icons, divider titles, priorities, and hide settings to apps; 2) Introduced Daisy settings file for customizable UI configuration; 3) Implemented new CSS styles for paginator component with hover and active states.
Fixes: 1) Updated AutoSlugField to enhance slug generation logic in core models.

Extra: 1) Removed redundant Daisy settings from base configurations; 2) Minor code cleanup and organization.
2025-06-21 18:35:34 +03:00

15 lines
420 B
Python

from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class VibesAuthConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "vibes_auth"
verbose_name = _("authentication")
icon = "fa fa-solid fa-user"
divider_title = _("eVibes Auth")
priority = 89
hide = False
def ready(self):
import vibes_auth.signals # noqa: F401