mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 11:48:28 +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({
|
|
|
|
});
|