cartodb-4.42/lib/assets/javascripts/dashboard/data/map-url-model.js
2024-04-06 05:25:13 +00:00

22 lines
380 B
JavaScript

const UrlModel = require('dashboard/data/url-model');
/**
* URL for a map (derived vis).
*/
const MapUrlModel = UrlModel.extend({
edit: function () {
return this.urlToPath('map');
},
public: function () {
return this.urlToPath('public_map');
},
deepInsights: function () {
return this.urlToPath('deep-insights');
}
});
module.exports = MapUrlModel;