forked from 00dani/lemoncurry
Oops, update the list of routes that's pinged on micropub creation to use the new names for entry feeds
This commit is contained in:
parent
098284a617
commit
452dd3f47d
1 changed files with 3 additions and 3 deletions
|
@ -77,9 +77,9 @@ def create(request):
|
||||||
reverse('home:index'),
|
reverse('home:index'),
|
||||||
reverse('entries:atom'),
|
reverse('entries:atom'),
|
||||||
reverse('entries:rss'),
|
reverse('entries:rss'),
|
||||||
reverse('entries:' + kind.index),
|
reverse('entries:index', kwargs={'kind': kind.plural}),
|
||||||
reverse('entries:' + kind.atom),
|
reverse('entries:atom_by_kind', kwargs={'kind': kind.plural}),
|
||||||
reverse('entries:' + kind.rss),
|
reverse('entries:rss_by_kind', kwargs={'kind': kind.plural}),
|
||||||
)] + [urljoin(base, cat.url) for cat in cats]
|
)] + [urljoin(base, cat.url) for cat in cats]
|
||||||
ping_hub.delay(perma, *others)
|
ping_hub.delay(perma, *others)
|
||||||
send_mentions.delay(perma)
|
send_mentions.delay(perma)
|
||||||
|
|
Loading…
Reference in a new issue