mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-20 02:48:04 +01:00
Use POST not GET for request requiring body
This commit is contained in:
@@ -44,6 +44,7 @@ import javax.ws.rs.GET;
|
||||
import javax.ws.rs.HeaderParam;
|
||||
import javax.ws.rs.NotAuthorizedException;
|
||||
import javax.ws.rs.NotFoundException;
|
||||
import javax.ws.rs.POST;
|
||||
import javax.ws.rs.PUT;
|
||||
import javax.ws.rs.Path;
|
||||
import javax.ws.rs.PathParam;
|
||||
@@ -323,7 +324,8 @@ public class ProfileController {
|
||||
}
|
||||
|
||||
@Timed
|
||||
@GET
|
||||
@POST
|
||||
@Consumes(MediaType.APPLICATION_JSON)
|
||||
@Produces(MediaType.APPLICATION_JSON)
|
||||
@Path("/identity_check/batch")
|
||||
public CompletableFuture<BatchIdentityCheckResponse> runBatchIdentityCheck(BatchIdentityCheckRequest request) {
|
||||
|
||||
Reference in New Issue
Block a user