21 lines
403 B
Python
21 lines
403 B
Python
''' Django notifications settings file '''
|
|
# -*- coding: utf-8 -*-
|
|
from django.conf import settings
|
|
|
|
|
|
CONFIG_DEFAULTS = {
|
|
'PAGINATE_BY': 20,
|
|
'USE_JSONFIELD': False,
|
|
'SOFT_DELETE': False,
|
|
'NUM_TO_FETCH': 10,
|
|
}
|
|
|
|
|
|
def get_config():
|
|
user_config = getattr(settings, 'DJANGO_NOTIFICATIONS_CONFIG', {})
|
|
|
|
config = CONFIG_DEFAULTS.copy()
|
|
config.update(user_config)
|
|
|
|
return config
|