1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/wizard/components/wizard-category-selector.js.es6
2020-03-24 20:35:46 +11:00

12 Zeilen
Kein EOL
478 B
JavaScript

import CategorySelector from 'discourse/components/category-selector';
import { computed } from "@ember/object";
import { makeArray } from "discourse-common/lib/helpers";
export default CategorySelector.extend({
content: computed("categories.[]", "blacklist.[]", "whitelist.[]", function() {
return this._super().filter(category => {
const whitelist = makeArray(this.whitelist);
return !whitelist.length || whitelist.indexOf(category.id) > -1;
});
})
})