mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 00:29:30 -05:00
16 lines
362 B
Text
16 lines
362 B
Text
|
export default Discourse.Route.extend({
|
||
|
model: function(params) {
|
||
|
this.userFilter = params.filter;
|
||
|
return Discourse.AdminUser.findAll(params.filter);
|
||
|
},
|
||
|
|
||
|
setupController: function(controller, model) {
|
||
|
controller.setProperties({
|
||
|
model: model,
|
||
|
query: this.userFilter,
|
||
|
showEmails: false,
|
||
|
refreshing: false,
|
||
|
});
|
||
|
}
|
||
|
});
|