function getFeature(path) {
      return $http.get('api/rest/feature/' + encodeURIComponent(path)).then(function (response) {
        return response.data;
      });
    }