Skip to content
Snippets Groups Projects
Commit 1b4aa2dc authored by David Ormsbee's avatar David Ormsbee
Browse files

update askbot settings to lower upvote karma requirement to 1 and disable social sharing

parent 7e1d2330
No related branches found
Tags release-2020-01-21-14.55
No related merge requests found
......@@ -322,6 +322,25 @@ INSTALLED_APPS = INSTALLED_APPS + (
'followit',
)
# askbot livesettings
LIVESETTINGS_OPTIONS = {
1: {
'SETTINGS' : {
'MIN_REP' : {
'MIN_REP_TO_VOTE_UP' : 1,
},
'SOCIAL_SHARING' : {
'ENABLE_SHARING_TWITTER' : False,
'ENABLE_SHARING_FACEBOOK' : False,
'ENABLE_SHARING_LINKEDIN' : False,
'ENABLE_SHARING_IDENTICA' : False,
'ENABLE_SHARING_GOOGLE' : False,
}
}
},
}
CACHE_MIDDLEWARE_ANONYMOUS_ONLY = True
ASKBOT_URL = 'discussion/'
LOGIN_REDIRECT_URL = '/'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment