mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 03:23:43 +08:00
19 lines
435 B
JavaScript
19 lines
435 B
JavaScript
export default Discourse.Route.extend({
|
|
|
|
model: function(params) {
|
|
var groups = this.modelFor('adminGroupsType'),
|
|
group = groups.findProperty('name', params.name);
|
|
|
|
if (!group) { return this.transitionTo('adminGroups.index'); }
|
|
|
|
return group;
|
|
},
|
|
|
|
setupController: function(controller, model) {
|
|
controller.set("model", model);
|
|
controller.set("model.usernames", null);
|
|
model.findMembers();
|
|
}
|
|
|
|
});
|