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.
1 parent 6645fce commit 6e35016Copy full SHA for 6e35016
src/main/java/io/getstream/cloud/CloudUser.java
@@ -78,6 +78,10 @@ public CompletableFuture<Data> create(Data data) throws StreamException {
78
});
79
}
80
81
+ public CompletableFuture<Data> create() throws StreamException {
82
+ return create(new Data());
83
+ }
84
+
85
public CompletableFuture<Data> update(Data data) throws StreamException {
86
return client.updateUser(id, data)
87
.thenApply(response -> {
0 commit comments