From 931568db26ddb5989d00a64d625b070463e6005e Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Mon, 20 Nov 2017 11:26:15 +1100 Subject: [PATCH] Temporarily disable replies, likes, and reposts since they don't work yet but I wanna release cat support --- entries/kinds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entries/kinds.py b/entries/kinds.py index a571f8c..f0cade7 100644 --- a/entries/kinds.py +++ b/entries/kinds.py @@ -63,7 +63,7 @@ Repost = Entry( plural='reposts', ) -all = (Note, Article, Photo, Reply, Like, Repost) +all = (Note, Article, Photo) on_home = {k.id for k in all if k.on_home} from_id = {k.id: k for k in all} from_plural = {k.plural: k for k in all}