Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
12 Zeilen
425 B
Text
12 Zeilen
425 B
Text
|
import ComboBox from 'select-kit/components/combo-box';
|
||
|
import { computed } from "@ember/object";
|
||
|
import { makeArray } from "discourse-common/lib/helpers";
|
||
|
|
||
|
export default ComboBox.extend({
|
||
|
content: computed("groups.[]", "whitelist.[]", function() {
|
||
|
const whitelist = makeArray(this.whitelist);
|
||
|
return this.groups.filter(group => {
|
||
|
return !whitelist.length || whitelist.indexOf(group.id) > -1;
|
||
|
});
|
||
|
})
|
||
|
})
|