New issue 38 by a...@laxu.de: Support for Subscriber groups
http://code.google.com/p/feedjack/issues/detail?id=38
Support for Grouping Subscribes together (with subgroups) would be cool.
A simple model like this should do:
class Group:
parentgroup=models.ForeignKey(Group,blank=True,null=True)
class Subscriber:
group=models.ForeignKey(Group, blank=True, null=True)
and a url /group/groupname for getting group-feed-entries
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
patch for groups
Attachments:
feedjack.patch 5.6 KB