mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:48:45 +08:00
26 lines
589 B
JavaScript
26 lines
589 B
JavaScript
import Group from "discourse/models/group";
|
|
|
|
export default Discourse.Route.extend({
|
|
model() {
|
|
return this.modelFor("adminUser");
|
|
},
|
|
|
|
afterModel(model) {
|
|
if (this.currentUser.admin) {
|
|
return Group.findAll().then(groups => {
|
|
this._availableGroups = groups.filterBy("automatic", false);
|
|
return model;
|
|
});
|
|
}
|
|
},
|
|
|
|
setupController(controller, model) {
|
|
controller.setProperties({
|
|
originalPrimaryGroupId: model.primary_group_id,
|
|
availableGroups: this._availableGroups,
|
|
customGroupIdsBuffer: null,
|
|
model
|
|
});
|
|
}
|
|
});
|