/**
  * Note: for a newly developed feature, it would be better to have a dedicated
  * queue for root event but
  * - The events below are meant to disapear when legacy backend will be removed
  * - This mean that for all new platforms there would be a new empty pane (git root
  *   events)
  * So it's better to make them run in the default queue like before
  */
 public function getTypesForDefaultQueue()
 {
     if ($this->repository_factory->hasGitShellRepositories()) {
         return array(SystemEvent_GIT_LEGACY_REPO_ACCESS::NAME, SystemEvent_GIT_LEGACY_REPO_DELETE::NAME);
     }
     return array();
 }