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

32 lines
749 B
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -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", {
2018-06-15 11:03:24 -04:00
type: "POST",
data: {
url: this.get("url"),
permalink_type: this.get("permalink_type"),
permalink_type_value: this.get("permalink_type_value")
}
2015-07-15 08:54:28 -04:00
});
},
destroy: function() {
2018-06-15 11:03:24 -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) {
2018-06-15 11:03:24 -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;