2018-06-15 23:03:24 +08:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2015-07-15 20:54:28 +08:00
|
|
|
const Permalink = Discourse.Model.extend({
|
|
|
|
save: function() {
|
2016-07-01 01:55:44 +08:00
|
|
|
return ajax("/admin/permalinks.json", {
|
2018-06-15 23:03:24 +08: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 20:54:28 +08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
destroy: function() {
|
2018-06-15 23:03:24 +08:00
|
|
|
return ajax("/admin/permalinks/" + this.get("id") + ".json", {
|
|
|
|
type: "DELETE"
|
|
|
|
});
|
2015-07-15 20:54:28 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Permalink.reopenClass({
|
|
|
|
findAll: function(filter) {
|
2018-06-15 23:03:24 +08:00
|
|
|
return ajax("/admin/permalinks.json", { data: { filter: filter } }).then(
|
|
|
|
function(permalinks) {
|
|
|
|
return permalinks.map(p => Permalink.create(p));
|
|
|
|
}
|
|
|
|
);
|
2015-07-15 20:54:28 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default Permalink;
|