We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 384593f + fd2d407 commit 0ac9cdaCopy full SHA for 0ac9cda
.gitignore
@@ -1 +1,4 @@
1
org/**/*.class
2
+*.ipr
3
+*.iws
4
+*.iml
org/etherpad_lite_client/EPLiteClient.java
@@ -122,11 +122,11 @@ public HashMap listPads(String groupID) {
122
* @param groupID string
123
* @param padName string
124
*/
125
- public void createGroupPad(String groupID, String padName) {
+ public HashMap createGroupPad(String groupID, String padName) {
126
HashMap args = new HashMap();
127
args.put("groupID", groupID);
128
args.put("padName", padName);
129
- this.post("createGroupPad", args);
+ return this.post("createGroupPad", args);
130
}
131
132
/**
0 commit comments