mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-05 05:37:50 +02:00
9 lines
210 B
Python
9 lines
210 B
Python
from rest_framework.parsers import BaseParser
|
|
|
|
|
|
class PlainTextParser(BaseParser):
|
|
media_type = "text/plain"
|
|
|
|
def parse(self, stream, media_type=None, parser_context=None):
|
|
return stream.read()
|