mirror of
https://github.com/discourse/discourse.git
synced 2025-01-31 02:49:29 +08: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({
|
|
|
|
});
|