mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FEATURE: manage Permalinks
This commit is contained in:
22
app/assets/javascripts/admin/models/permalink.js.es6
Normal file
22
app/assets/javascripts/admin/models/permalink.js.es6
Normal file
@@ -0,0 +1,22 @@
|
||||
const Permalink = Discourse.Model.extend({
|
||||
save: function() {
|
||||
return Discourse.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 Discourse.ajax("/admin/permalinks/" + this.get('id') + ".json", {type: 'DELETE'});
|
||||
}
|
||||
});
|
||||
|
||||
Permalink.reopenClass({
|
||||
findAll: function(filter) {
|
||||
return Discourse.ajax("/admin/permalinks.json", { data: { filter: filter } }).then(function(permalinks) {
|
||||
return permalinks.map(p => Discourse.Permalink.create(p));
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
export default Permalink;
|
||||
Reference in New Issue
Block a user