mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-01-23 15:59:49 -05:00
11 lines
242 B
JavaScript
11 lines
242 B
JavaScript
|
Discourse.AdminGroupsController = Ember.ArrayController.extend({
|
||
|
itemController: 'adminGroup',
|
||
|
edit: function(action){
|
||
|
this.get('content').select(action);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
Discourse.AdminGroupController = Ember.ObjectController.extend({
|
||
|
|
||
|
});
|