diff --git a/cms/envs/common.py b/cms/envs/common.py index e7df69b5ae..112de27e76 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -54,8 +54,6 @@ FEATURES = { # email address for studio staff (eg to request course creation) 'STUDIO_REQUEST_EMAIL': '', - 'STUDIO_NPS_SURVEY': True, - # Segment.io - must explicitly turn it on for production 'SEGMENT_IO': False, diff --git a/cms/envs/dev.py b/cms/envs/dev.py index c417a96ee8..020ffb5af2 100644 --- a/cms/envs/dev.py +++ b/cms/envs/dev.py @@ -174,9 +174,6 @@ DEBUG_TOOLBAR_CONFIG = { # Stacktraces slow down page loads drastically (for pages with lots of queries). DEBUG_TOOLBAR_MONGO_STACKTRACES = False -# disable NPS survey in dev mode -FEATURES['STUDIO_NPS_SURVEY'] = False - # Enable URL that shows information about the status of variuous services FEATURES['ENABLE_SERVICE_STATUS'] = True diff --git a/cms/envs/test.py b/cms/envs/test.py index 8b9f7ae73f..f1c4ee13b2 100644 --- a/cms/envs/test.py +++ b/cms/envs/test.py @@ -188,9 +188,6 @@ PASSWORD_HASHERS = ( # dummy segment-io key SEGMENT_IO_KEY = '***REMOVED***' -# disable NPS survey in test mode -FEATURES['STUDIO_NPS_SURVEY'] = False - FEATURES['ENABLE_SERVICE_STATUS'] = True # This is to disable a test under the common directory that will not pass when run under CMS diff --git a/cms/templates/base.html b/cms/templates/base.html index 94fac13c7b..e4bd066d24 100644 --- a/cms/templates/base.html +++ b/cms/templates/base.html @@ -296,6 +296,4 @@ <%block name="jsextra"> - - <%include file="widgets/qualaroo.html" /> diff --git a/cms/templates/widgets/qualaroo.html b/cms/templates/widgets/qualaroo.html deleted file mode 100644 index 1081c22c08..0000000000 --- a/cms/templates/widgets/qualaroo.html +++ /dev/null @@ -1,13 +0,0 @@ -% if settings.FEATURES.get('STUDIO_NPS_SURVEY'): - - - - - - -% endif