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