Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- REST_FRAMEWORK = {
- 'DATETIME_FORMAT': "%d/%m/%Y %H:%M",
- 'PAGE_SIZE': 8,
- 'EXCEPTION_HANDLER': 'rest_framework_json_api.exceptions.exception_handler',
- 'DEFAULT_PAGINATION_CLASS':
- 'rest_framework_json_api.pagination.PageNumberPagination',
- 'DEFAULT_PARSER_CLASSES': (
- 'rest_framework_json_api.parsers.JSONParser',
- 'rest_framework.parsers.FormParser',
- 'rest_framework.parsers.MultiPartParser'
- ),
- 'DEFAULT_AUTHENTICATION_CLASSES': (
- 'rest_framework.authentication.TokenAuthentication',
- ),
- 'DEFAULT_PERMISSION_CLASSES': (
- 'rest_framework.permissions.AllowAny',
- ),
- 'DEFAULT_RENDERER_CLASSES': (
- 'rest_framework_json_api.renderers.JSONRenderer',
- 'rest_framework.renderers.BrowsableAPIRenderer',
- ),
- 'DEFAULT_METADATA_CLASS': 'rest_framework_json_api.metadata.JSONAPIMetadata',
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement