/**
  * Logs out current user and sends a response of Logged Out
  * until something else more useful should be returned.
  */
 public static function logout()
 {
     AppUtils::logout();
     AppUtils::sendResponse('Logged Out');
 }