Skip to content

Commit

Permalink
fix group token jackson
Browse files Browse the repository at this point in the history
  • Loading branch information
rfresh2 committed Oct 17, 2021
1 parent dd2b120 commit ca5575e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class ValidateGroupTokenRequest {
@JsonProperty("group")
public final UUID group;

public ValidateGroupTokenRequest(String token, UUID group) {
public ValidateGroupTokenRequest(@JsonProperty("token") String token, @JsonProperty("group") UUID group) {
this.token = token;
this.group = group;
}
Expand Down

0 comments on commit ca5575e

Please sign in to comment.