cartodb-4.42/lib/assets/javascripts/cartodb/old_common/urls/dashboard_url.js
2024-04-06 05:25:13 +00:00

24 lines
484 B
JavaScript

/**
* URLs associated with the dashboard.
*/
cdb.common.DashboardUrl = cdb.common.Url.extend({
datasets: function() {
return new cdb.common.DashboardDatasetsUrl({
base_url: this.urlToPath('datasets')
});
},
maps: function() {
return new cdb.common.DashboardVisUrl({
base_url: this.urlToPath('maps')
});
},
deepInsights: function() {
return new cdb.common.DashboardVisUrl({
base_url: this.urlToPath('deep-insights')
});
}
});