checks.py 295 B

12345678910
  1. from django.core.checks import register, Error
  2. from django.conf import settings
  3. @register()
  4. def check_settings(app_configs, **kwargs):
  5. errors = []
  6. if not hasattr(settings, 'PAYMENTS_EMAILS'):
  7. errors.append(Error('Missing settings variable PAYMENTS_EMAILS.'))
  8. return errors