Files
cartodb/lib/assets/javascripts/builder/components/modals/publish/publish/share-model.js
2020-06-15 10:58:47 +08:00

24 lines
389 B
JavaScript
Executable File

var Backbone = require('backbone');
module.exports = Backbone.Model.extend({
createIcon: function () {
return this.get('createIcon');
},
type: function () {
return this.get('type');
},
content: function () {
return this.get('content');
},
url: function () {
return this.get('url');
},
isPrivate: function () {
return this.get('private');
}
});