Add a Link header to the Micropub create response indicating the entry's shortlink

Este commit está contenido en:
Danielle McLean 2018-05-10 13:42:59 +10:00
padre 86f4da306c
commit eb20cc1d21
Firmado por: 00dani
ID de clave GPG: D111F8C5A2560F19
Se han modificado 1 ficheros con 2 adiciones y 0 borrados

Ver fichero

@ -73,6 +73,7 @@ def create(request):
base = utils.origin(request)
perma = urljoin(base, entry.url)
short = urljoin(base, entry.short_url)
others = [urljoin(base, url) for url in (
reverse('home:index'),
reverse('entries:atom'),
@ -86,4 +87,5 @@ def create(request):
res = HttpResponse(status=201)
res['Location'] = perma
res['Link'] = '<{}>; rel="shortlink"'.format(short)
return res