/**
  * @param SS_HTTPResponse $r
  * @return SS_HTTPResponse|void
  * @throws SS_HTTPResponse_Exception
  */
 public function handleUnselect(SS_HTTPResponse $r)
 {
     if (!Member::currentUser()) {
         return $this->httpError(403);
     }
     $this->presentation->removeFromIndividualList();
     return new SS_HTTPResponse("Presentation unselected.", 200);
 }