Skip to content

Commit 8e71b5a

Browse files
chore: cleanup as per the PR
1 parent b4e165e commit 8e71b5a

4 files changed

Lines changed: 0 additions & 7 deletions

File tree

README.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,6 @@ In Studio, a new item ("Proctored Exam Settings") is added to "Other Course Sett
196196
* Enable proctored exams for the course
197197
* Allow opting out of proctored exams
198198
* Select a proctoring provider
199-
* Enable automatic creation of Zendesk tickets for "suspicious" proctored exam attempts
200199

201200
Feature: Advanced Settings
202201
==========================

plugins/course-apps/proctoring/Settings.test.jsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ describe('ProctoredExamSettings', () => {
7878
allow_proctoring_opt_out: false,
7979
proctoring_provider: 'mockproc',
8080
proctoring_escalation_email: '[email protected]',
81-
create_zendesk_tickets: true,
8281
},
8382
available_proctoring_providers: ['software_secure', 'mockproc', 'lti_external'],
8483
requires_escalation_email_providers: ['test_lti'],
@@ -106,7 +105,6 @@ describe('ProctoredExamSettings', () => {
106105
allow_proctoring_opt_out: false,
107106
proctoring_provider: 'mockproc',
108107
proctoring_escalation_email: '[email protected]',
109-
create_zendesk_tickets: true,
110108
},
111109
available_proctoring_providers: ['software_secure', 'mockproc'],
112110
requires_escalation_email_providers: [],
@@ -149,8 +147,6 @@ describe('ProctoredExamSettings', () => {
149147
const selectElement = screen.getByDisplayValue('mockproc');
150148
fireEvent.change(selectElement, { target: { value: 'test_lti' } });
151149
expect(screen.queryByTestId('allowOptingOutRadio')).toBeNull();
152-
expect(screen.queryByTestId('createZendeskTicketsYes')).toBeNull();
153-
expect(screen.queryByTestId('createZendeskTicketsNo')).toBeNull();
154150
});
155151
});
156152

src/course-outline/__mocks__/courseOutlineIndex.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ module.exports = {
6262
highlightsPreviewOnly: false,
6363
highlightsDocUrl: 'https://docs.openedx.org/en/latest/educators/how-tos/course_development/manage_course_highlight_emails.html',
6464
enableProctoredExams: true,
65-
createZendeskTickets: true,
6665
enableTimedExams: true,
6766
childInfo: {
6867
category: 'chapter',

src/course-unit/__mocks__/courseSectionVertical.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1405,7 +1405,6 @@ module.exports = {
14051405
highlights_preview_only: false,
14061406
highlights_doc_url: 'https://docs.openedx.org/en/latest/educators/how-tos/course_development/manage_course_highlight_emails.html',
14071407
enable_proctored_exams: false,
1408-
create_zendesk_tickets: true,
14091408
enable_timed_exams: true,
14101409
ancestor_has_staff_lock: false,
14111410
user_partition_info: {

0 commit comments

Comments
 (0)