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.
15 lines
411 B
Python
15 lines
411 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class PaymentsConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "payments"
|
|
verbose_name = _("payments")
|
|
icon = "fa fa-solid fa-star"
|
|
divider_title = _("eVibes Engine")
|
|
priority = 87
|
|
hide = False
|
|
|
|
def ready(self):
|
|
import payments.signals # noqa: F401
|