mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-12 17:30:58 +00:00
16 lines
333 B
Python
16 lines
333 B
Python
# -*- coding: utf-8 -*-
|
|
from django.conf import settings
|
|
|
|
CONFIG_DEFAULTS = {
|
|
'PAGINATE_BY': 20,
|
|
'USE_JSONFIELD': False,
|
|
'SOFT_DELETE': False
|
|
}
|
|
|
|
def get_config():
|
|
USER_CONFIG = getattr(settings, 'DJANGO_NOTIFICATIONS_CONFIG', {})
|
|
|
|
CONFIG = CONFIG_DEFAULTS.copy()
|
|
CONFIG.update(USER_CONFIG)
|
|
|
|
return CONFIG
|