Detect JSON API media type as a json content view

IANA assignment here:
https://www.iana.org/assignments/media-types/application/vnd.api+json

More about JSON API:
https://github.com/json-api/json-api
This commit is contained in:
Linmiao Xu 2016-07-06 21:01:04 -07:00
parent 9c873d63f4
commit 275cf7a6c2
2 changed files with 11 additions and 1 deletions

View File

@ -226,7 +226,10 @@ class ViewXML(View):
class ViewJSON(View):
name = "JSON"
prompt = ("json", "s")
content_types = ["application/json"]
content_types = [
"application/json",
"application/vnd.api+json"
]
def __call__(self, data, **metadata):
pj = pretty_json(data)

View File

@ -201,6 +201,13 @@ Larry
)
assert "Raw" in r[0]
r = cv.get_content_view(
cv.get("Auto"),
b"[1, 2, 3]",
headers=Headers(content_type="application/vnd.api+json")
)
assert r[0] == "JSON"
tutils.raises(
ContentViewException,
cv.get_content_view,