Commit 826aa455 by Adam Palay Committed by David Baumgold

removes qualaroo from studio (STUD-1684)

parent 0a8b2649
...@@ -54,8 +54,6 @@ FEATURES = { ...@@ -54,8 +54,6 @@ FEATURES = {
# email address for studio staff (eg to request course creation) # email address for studio staff (eg to request course creation)
'STUDIO_REQUEST_EMAIL': '', 'STUDIO_REQUEST_EMAIL': '',
'STUDIO_NPS_SURVEY': True,
# Segment.io - must explicitly turn it on for production # Segment.io - must explicitly turn it on for production
'SEGMENT_IO': False, 'SEGMENT_IO': False,
......
...@@ -174,9 +174,6 @@ DEBUG_TOOLBAR_CONFIG = { ...@@ -174,9 +174,6 @@ DEBUG_TOOLBAR_CONFIG = {
# Stacktraces slow down page loads drastically (for pages with lots of queries). # Stacktraces slow down page loads drastically (for pages with lots of queries).
DEBUG_TOOLBAR_MONGO_STACKTRACES = False 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 # Enable URL that shows information about the status of variuous services
FEATURES['ENABLE_SERVICE_STATUS'] = True FEATURES['ENABLE_SERVICE_STATUS'] = True
......
...@@ -188,9 +188,6 @@ PASSWORD_HASHERS = ( ...@@ -188,9 +188,6 @@ PASSWORD_HASHERS = (
# dummy segment-io key # dummy segment-io key
SEGMENT_IO_KEY = '***REMOVED***' SEGMENT_IO_KEY = '***REMOVED***'
# disable NPS survey in test mode
FEATURES['STUDIO_NPS_SURVEY'] = False
FEATURES['ENABLE_SERVICE_STATUS'] = True FEATURES['ENABLE_SERVICE_STATUS'] = True
# This is to disable a test under the common directory that will not pass when run under CMS # This is to disable a test under the common directory that will not pass when run under CMS
......
...@@ -296,6 +296,4 @@ ...@@ -296,6 +296,4 @@
<%block name="jsextra"></%block> <%block name="jsextra"></%block>
<div class="modal-cover"></div> <div class="modal-cover"></div>
</body> </body>
<%include file="widgets/qualaroo.html" />
</html> </html>
% if settings.FEATURES.get('STUDIO_NPS_SURVEY'):
<!-- Qualaroo is used for net promoter score surveys -->
<script type="text/javascript">
% if user.is_authenticated():
var _kiq = _kiq || [];
_kiq.push(['identify', "${ user.email }" ]);
% endif
</script>
<!-- Qualaroo for edx.org -->
<script type="text/javascript" src="//s3.amazonaws.com/ki.js/48221/9SN.js" async="true"></script>
<!-- end Qualaroo -->
% endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment