Some checks failed
CI/CD Pipeline / Run Tests (pull_request) Successful in 1m53s
CI/CD Pipeline / Telegram Notify Success (push) Has been cancelled
CI/CD Pipeline / Run Tests (push) Has been cancelled
CI/CD Pipeline / Code Quality Checks (push) Has been cancelled
CI/CD Pipeline / Code Quality Checks (pull_request) Failing after 2m54s
CI/CD Pipeline / Telegram Notify Success (pull_request) Has been skipped
13 lines
389 B
Python
13 lines
389 B
Python
"""Конфигурация приложения backups."""
|
|
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class BackupsConfig(AppConfig):
|
|
"""AppConfig приложения backup-экспорта."""
|
|
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "apps.backups"
|
|
verbose_name = _("Резервные копии")
|