DEV: apply new coding standards (#10592)

This commit is contained in:
Joffrey JAFFEUX
2020-09-04 13:42:47 +02:00
committed by GitHub
parent 80dfaeb0d2
commit 52672b9eab
1473 changed files with 9386 additions and 9958 deletions
@@ -5,42 +5,42 @@ import Category from "discourse/models/category";
import EmberObject from "@ember/object";
const Permalink = EmberObject.extend({
save: function() {
save: function () {
return ajax("/admin/permalinks.json", {
type: "POST",
data: {
url: this.url,
permalink_type: this.permalink_type,
permalink_type_value: this.permalink_type_value
}
permalink_type_value: this.permalink_type_value,
},
});
},
@discourseComputed("category_id")
category: function(category_id) {
category: function (category_id) {
return Category.findById(category_id);
},
@discourseComputed("external_url")
linkIsExternal: function(external_url) {
linkIsExternal: function (external_url) {
return !DiscourseURL.isInternal(external_url);
},
destroy: function() {
destroy: function () {
return ajax("/admin/permalinks/" + this.id + ".json", {
type: "DELETE"
type: "DELETE",
});
}
},
});
Permalink.reopenClass({
findAll: function(filter) {
findAll: function (filter) {
return ajax("/admin/permalinks.json", { data: { filter: filter } }).then(
function(permalinks) {
return permalinks.map(p => Permalink.create(p));
function (permalinks) {
return permalinks.map((p) => Permalink.create(p));
}
);
}
},
});
export default Permalink;