X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/967eed676fc83d15b26149047f353ac61faa8217..56de0191b3b81919a567dd9b89ed820c923d79dc:/src/catalogue/tasks.py?ds=inline

diff --git a/src/catalogue/tasks.py b/src/catalogue/tasks.py
index a7b67aec9..499e8e659 100644
--- a/src/catalogue/tasks.py
+++ b/src/catalogue/tasks.py
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
 #
@@ -66,3 +65,10 @@ def build_custom_pdf(book_id, customizations, file_name, waiter_id=None):
 def update_counters():
     from .helpers import update_counters
     update_counters()
+
+
+@task(ignore_result=True)
+def update_references(book_id):
+    from catalogue.models import Book
+    Book.objects.get(id=book_id).update_references()
+