mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
13 lines
323 B
JavaScript
13 lines
323 B
JavaScript
import Group from 'discourse/models/group';
|
|
|
|
export default Ember.Route.extend({
|
|
model() {
|
|
return Group.findAll().then(groups => {
|
|
return groups.filter(g => !g.get('automatic'));
|
|
});
|
|
},
|
|
|
|
setupController(controller, groups) {
|
|
controller.setProperties({ groups, groupId: null, users: null });
|
|
}
|
|
});
|