Adding Notifications to Mastery and the Boundary
Let’s start working on the notifications to start and end our quizzes.
Adding a notification to start the quiz
Let’s add the notification to start_quiz in proctor.ex:
In start_quiz, we have two changes to make:
-
After we log the start of the quiz, we call our new
notify_startfunction, where we’ll do the notification viasend. -
Next, ...