Merge changes I6974d505,I3685381f

* changes:
  Allow change GroupJson options in CreateGroup
  CreateGroup: add members to GroupInput
This commit is contained in:
Edwin Kempin
2016-08-17 06:22:08 +00:00
committed by Gerrit Code Review
4 changed files with 44 additions and 12 deletions

View File

@@ -14,9 +14,12 @@
package com.google.gerrit.extensions.api.groups;
import java.util.List;
public class GroupInput {
public String name;
public String description;
public Boolean visibleToAll;
public String ownerId;
public List<String> members;
}