From a91bc3b008433e6d2d3316f1567e4fb62522ade1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Mon, 19 May 2014 12:48:58 +0200 Subject: [PATCH] Fixed problem in attachments api --- taiga/projects/attachments/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taiga/projects/attachments/api.py b/taiga/projects/attachments/api.py index 54dccfc1..0afe58e6 100644 --- a/taiga/projects/attachments/api.py +++ b/taiga/projects/attachments/api.py @@ -104,7 +104,7 @@ class TaskAttachmentViewSet(BaseAttachmentViewSet): class WikiAttachmentViewSet(BaseAttachmentViewSet): - content_type = "wiki.wiki" + content_type = "wiki.wikipage" create_notification_template = "create_wiki_notification" update_notification_template = "update_wiki_notification" destroy_notification_template = "destroy_wiki_notification"