cartodb-4.42/lib/assets/javascripts/cartodb/old_common/urls/dashboard_url.js

24 lines
484 B
JavaScript
Raw Normal View History

2024-04-06 13:25:13 +08:00
/**
* 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')
});
}
});