this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Manager: loop through just the values

+1 -1
+1 -1
feeds/__init__.py
··· 6 6 self.feeds[feed.FEED_URI] = feed() 7 7 8 8 def process(self, commit): 9 - for _, feed in self.feeds.items(): 9 + for feed in self.feeds.values(): 10 10 feed.process(commit) 11 11 12 12 def serve(self, feed_uri, limit, offset):