mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
9 lines
198 B
JavaScript
9 lines
198 B
JavaScript
import computed from "ember-addons/ember-computed-decorators";
|
|
|
|
export default Ember.Component.extend({
|
|
@computed()
|
|
groupChoices() {
|
|
return this.site.get('groups').map(g => g.name);
|
|
}
|
|
});
|