0
0
mirror of https://github.com/signalapp/Signal-Server.git synced 2024-09-20 12:02:18 +02:00

Add provisioning keepalive endpoint.

// FREEBIE
This commit is contained in:
Moxie Marlinspike 2015-07-28 15:22:51 -07:00
parent e0b480e232
commit 3327bf4788

View File

@ -45,4 +45,11 @@ public class KeepAliveController {
return Response.ok().build();
}
@Timed
@GET
@Path("/provisioning")
public Response getProvisioningKeepAlive() {
return Response.ok().build();
}
}