From 49125a0f3c336a2084cecee78bccc694857d2882 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Mon, 3 Nov 2014 12:34:33 +0100 Subject: [PATCH] review all badges, disable for real some --- askbot/models/badges.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/askbot/models/badges.py b/askbot/models/badges.py index b5864a39..f63fb8aa 100644 --- a/askbot/models/badges.py +++ b/askbot/models/badges.py @@ -887,26 +887,26 @@ BADGES = { #from appropriate locations in the code of askbot application #most likely - from manipulator functions that are added to the User objects EVENTS_TO_BADGES = { - 'accept_best_answer': (Scholar, Guru, Enlightened), - 'delete_post': (Disciplined, PeerPressure,), + 'accept_best_answer': (Guru,), + 'delete_post': (,), 'downvote': (Critic, CivicDuty),#no regard for question or answer for now 'edit_answer': (Editor, AssociateEditor), 'edit_question': (Editor, AssociateEditor), - 'flag_post': (CitizenPatrol,), + 'flag_post': (,), 'post_answer': (Necromancer,), - 'post_comment': (Commentator,), + 'post_comment': (,), 'retag_question': (Organizer,), - 'select_favorite_question': (FavoriteQuestion, StellarQuestion,), + 'select_favorite_question': (FavoriteQuestion, ), 'site_visit': (), 'update_tag': (Taxonomist,), 'update_user_profile': (Autobiographer,), 'upvote_answer': ( - Teacher, NiceAnswer, GoodAnswer, + Teacher, GoodAnswer, GreatAnswer, Supporter, SelfLearner, CivicDuty, - Guru, Enlightened, Necromancer + Guru, Necromancer ), 'upvote_question': ( - NiceQuestion, GoodQuestion, + GoodQuestion, GreatQuestion, Supporter, CivicDuty ), 'upvote_comment':(),#todo - add some badges here