diff --git a/micropub/views/create.py b/micropub/views/create.py index 082bd4c..7257172 100644 --- a/micropub/views/create.py +++ b/micropub/views/create.py @@ -71,6 +71,9 @@ def create(request): entry.cats.set(cats) entry.save() + for url in props.get('syndication', []): + entry.syndications.create(url=url) + base = utils.origin(request) perma = urljoin(base, entry.url) short = urljoin(base, entry.short_url)