mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 00:29:30 -05:00
9 lines
234 B
JavaScript
9 lines
234 B
JavaScript
Discourse.AdminGroupsRoute = Discourse.Route.extend({
|
|
model: function() {
|
|
return Discourse.Group.findAll();
|
|
},
|
|
renderTemplate: function() {
|
|
this.render('admin/templates/groups',{into: 'admin/templates/admin'});
|
|
}
|
|
});
|
|
|