mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-17 09:11:06 +00:00
16 lines
328 B
Python
16 lines
328 B
Python
# -*- coding: utf-8 -*-
|
|
from django.conf import settings
|
|
|
|
CONFIG_DEFAULTS = {
|
|
'PAGINATE_BY': 20,
|
|
'JSONFIELD': False,
|
|
'SOFT_DELETE': False
|
|
}
|
|
|
|
def get_config():
|
|
USER_CONFIG = getattr(settings, 'DJANGO_NOTIFICATION_CONFIG', {})
|
|
|
|
CONFIG = CONFIG_DEFAULTS.copy()
|
|
CONFIG.update(USER_CONFIG)
|
|
|
|
return CONFIG
|