(parentEmail)
| 39 | }, |
| 40 | |
| 41 | sendParentSignupInstructions (parentEmail) { |
| 42 | const jqxhr = $.ajax('/contact/send-parent-signup-instructions', { |
| 43 | method: 'POST', |
| 44 | data: { parentEmail } |
| 45 | }) |
| 46 | return new Promise(jqxhr.then) |
| 47 | }, |
| 48 | |
| 49 | sendTeacherSignupInstructions (teacherEmail, studentName) { |
| 50 | const jqxhr = $.ajax('/contact/send-teacher-signup-instructions', { |
nothing calls this directly
no outgoing calls
no test coverage detected