Kobi Ianko has uploaded a new change for review. Change subject: webadmin: Add external user group to Quota consumers ......................................................................
webadmin: Add external user group to Quota consumers Admin user cannot add a group of external users to the consumers of a selected Quota. This regression caused by commit: c68c60e153b7ffd1d900af7b00514b7940cceeb0 Change-Id: Id79d269b742d722cf818fbb944a0b6f0b387dbc2 Bug-Url: https://bugzilla.redhat.com/1081603 Signed-off-by: Kobi Ianko <[email protected]> --- M frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/quota/QuotaUserListModel.java 1 file changed, 1 insertion(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/22/26222/1 diff --git a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/quota/QuotaUserListModel.java b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/quota/QuotaUserListModel.java index 5850505..0c6f722 100644 --- a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/quota/QuotaUserListModel.java +++ b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/quota/QuotaUserListModel.java @@ -265,6 +265,7 @@ { DbGroup group = new DbGroup(); group.setId(user.getId()); + group.setExternalId(user.getExternalId()); group.setName(user.getFirstName()); group.setDomain(user.getDomain()); permissionParams.setGroup(group); -- To view, visit http://gerrit.ovirt.org/26222 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Id79d269b742d722cf818fbb944a0b6f0b387dbc2 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: ovirt-engine-3.4 Gerrit-Owner: Kobi Ianko <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
