/**
  * @param SS_HTTPResponse $r
  * @throws SS_HTTPResponse_Exception
  */
 public function handleGroupSelect(SS_HTTPResponse $r)
 {
     if (!Member::currentUser()) {
         return $this->httpError(403);
     }
     $this->presentation->assignToGroupList();
     return new SS_HTTPResponse('OK');
 }