1
0
Fork 1

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

Esse commit está contido em:
Danielle McLean 2018-05-10 13:42:59 +10:00
commit eb20cc1d21
Assinado por: 00dani
ID da chave GPG: D111F8C5A2560F19
1 arquivos alterados com 2 adições e 0 exclusões

Ver arquivo

@ -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