discourse/app/assets/javascripts/admin/models/permalink.js.es6

24 lines
689 B
Plaintext
Raw Normal View History

2016-06-30 13:55:44 -04:00
import { ajax } from 'discourse/lib/ajax';
2015-07-15 08:54:28 -04:00
const Permalink = Discourse.Model.extend({
save: function() {
2016-06-30 13:55:44 -04:00
return ajax("/admin/permalinks.json", {
2015-07-15 08:54:28 -04:00
type: 'POST',
data: {url: this.get('url'), permalink_type: this.get('permalink_type'), permalink_type_value: this.get('permalink_type_value')}
});
},
destroy: function() {
2016-06-30 13:55:44 -04:00
return ajax("/admin/permalinks/" + this.get('id') + ".json", {type: 'DELETE'});
2015-07-15 08:54:28 -04:00
}
});
Permalink.reopenClass({
findAll: function(filter) {
2016-06-30 13:55:44 -04:00
return ajax("/admin/permalinks.json", { data: { filter: filter } }).then(function(permalinks) {
return permalinks.map(p => Permalink.create(p));
2015-07-15 08:54:28 -04:00
});
}
});
export default Permalink;