def award_to(self, action):
if action.user.nodes.filter_state(deleted=False).filter(node_type="comment").count() == int(
- settings.CIVIC_DUTY_VOTES):
+ settings.PUNDIT_COMMENT_COUNT):
return action.user
def award_to(self, action):
if (action.node.node_type == "answer") and (action.node.accepted) and (
- action.node.score >= int(settings.ENLIGHTENED_UP_VOTES)):
+ action.node.score >= int(settings.GURU_UP_VOTES)):
return action.node.author