Skip to content

Commit

Permalink
Merge pull request #15973 from CartoDB/do-catalog-map
Browse files Browse the repository at this point in the history
DO catalog map
  • Loading branch information
Jesus89 authored Dec 23, 2020
2 parents 758538d + 22a1d02 commit 594e94e
Show file tree
Hide file tree
Showing 27 changed files with 1,859 additions and 30 deletions.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ sudo make install

### Features
- Add access to DO samples. Refactor samples/subscriptions UI [#15910](https://github.com/CartoDB/cartodb/pull/15910)
- Add preview/visualization of maps in DO catalog [#15973](https://github.com/CartoDB/cartodb/pull/15973)
- Add new user metrics to Home page [#15950](https://github.com/CartoDB/cartodb/pull/15950)

### Bug fixes / enhancements
Expand Down
9 changes: 9 additions & 0 deletions lib/assets/javascripts/do-catalog/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import Router from 'vue-router';

import Catalog from 'new-dashboard/pages/Data/Catalog.vue';
import CatalogDataset from 'new-dashboard/pages/Data/CatalogDataset.vue';
import CatalogDatasetMap from 'new-dashboard/pages/Data/CatalogDatasetMap.vue';
import CatalogDatasetData from 'new-dashboard/pages/Data/CatalogDatasetData.vue';
import CatalogDatasetSummary from 'new-dashboard/pages/Data/CatalogDatasetSummary.vue';

Expand All @@ -29,6 +30,14 @@ const router = new Router({
title: () => 'Spatial Data Catalog | CARTO'
},
children: [
{
path: 'map',
name: 'catalog-dataset-map',
component: CatalogDatasetMap,
meta: {
title: () => 'Spatial Data Catalog | CARTO'
}
},
{
path: 'data',
name: 'catalog-dataset-data',
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 594e94e

Please sign in to comment.