The expiration choice ‚never‘ is now enabled by default.

This commit is contained in:
Martin Mahner 2014-06-08 20:09:36 +02:00
parent 3944c4db90
commit afafd4fb3b

View file

@ -12,7 +12,7 @@ EXPIRE_CHOICES = getattr(settings, 'DPASTE_EXPIRE_CHOICES', (
(3600, _(u'In one hour')),
(3600 * 24 * 7, _(u'In one week')),
(3600 * 24 * 30, _(u'In one month')),
# ('never', _(u'Never')),
('never', _(u'Never')),
))
EXPIRE_DEFAULT = getattr(settings, 'DPASTE_EXPIRE_DEFAULT', EXPIRE_CHOICES[3][0])
MAX_CONTENT_LENGTH = getattr(settings, 'DPASTE_MAX_CONTENT_LENGTH', 250*1024*1024)