mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
23 lines
689 B
JavaScript
23 lines
689 B
JavaScript
import { ajax } from 'discourse/lib/ajax';
|
|
const Permalink = Discourse.Model.extend({
|
|
save: function() {
|
|
return ajax("/admin/permalinks.json", {
|
|
type: 'POST',
|
|
data: {url: this.get('url'), permalink_type: this.get('permalink_type'), permalink_type_value: this.get('permalink_type_value')}
|
|
});
|
|
},
|
|
|
|
destroy: function() {
|
|
return ajax("/admin/permalinks/" + this.get('id') + ".json", {type: 'DELETE'});
|
|
}
|
|
});
|
|
|
|
Permalink.reopenClass({
|
|
findAll: function(filter) {
|
|
return ajax("/admin/permalinks.json", { data: { filter: filter } }).then(function(permalinks) {
|
|
return permalinks.map(p => Permalink.create(p));
|
|
});
|
|
}
|
|
});
|
|
|
|
export default Permalink;
|