datatracker/tastypie/utils/urls.py
Henrik Levkowetz c39925fcd0 Added the tastypie lib to the repository
- Legacy-Id: 8742
2014-12-14 20:28:33 +00:00

10 lines
198 B
Python

from __future__ import unicode_literals
from django.conf import settings
def trailing_slash():
if getattr(settings, 'TASTYPIE_ALLOW_MISSING_SLASH', False):
return '/?'
return '/'