18 lines
304 B
JavaScript
18 lines
304 B
JavaScript
const UrlModel = require('dashboard/data/url-model');
|
|
|
|
/**
|
|
* URL for a dataset (standard vis).
|
|
*/
|
|
const DatasetUrlModel = UrlModel.extend({
|
|
|
|
edit: function () {
|
|
return this.urlToPath();
|
|
},
|
|
|
|
public: function () {
|
|
return this.urlToPath('public');
|
|
}
|
|
});
|
|
|
|
module.exports = DatasetUrlModel;
|