Skip to content
Snippets Groups Projects
Unverified Commit 6636b82c authored by Michael Terry's avatar Michael Terry Committed by GitHub
Browse files

Merge pull request #23336 from edx/mikix/experiments-noninteraction

Mark experiment events as non interactive
parents d846f8ab 605c986f
No related branches found
No related tags found
No related merge requests found
......@@ -119,6 +119,7 @@ class ExperimentWaffleFlag(CourseWaffleFlag):
'course_id': str(course_key) if course_key else None,
'bucket': bucket,
'is_staff': request.user.is_staff,
'nonInteraction': 1,
}
)
......
......@@ -104,6 +104,7 @@ class ExperimentWaffleFlagTests(SharedModuleStoreTestCase):
'bucket': 1,
'course_id': 'a/b/c',
'is_staff': self.user.is_staff,
'nonInteraction': 1,
},
}))
......
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