vm.getCategories = function() {
      return getRequest(vm.categoriesPath)
            .success(function(data) { $localStorage.categoryList = _.uniq(data.categories.map(vm.tagBuilder), JSON.stringify); })
            .then(function() { return vm.getLSCategories(); });
    };