Skip to content

Instantly share code, notes, and snippets.

@bsimpson63
Created March 19, 2013 16:35
Show Gist options
  • Save bsimpson63/5197685 to your computer and use it in GitHub Desktop.
Save bsimpson63/5197685 to your computer and use it in GitHub Desktop.
def keep_fn(self):
def keep(item):
return (not item._spam or
(c.user_is_loggedin and
(item.author_id == c.user._id or
c.user_is_admin or
item.subreddit.is_moderator(c.user))))
return keep
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment