Issue Type: Feature Request Feature Request
Affects Versions: 0.8.0
Assignee: Lucas Holmquist
Components: UnifiedPush-admin, UnifiedPush-server
Created: 16/Oct/13 9:22 AM
Description:

Currently the Admin UI will send a GET request to "ag-push/rest/applications"
endpoint on each page transition to make sure the the user is authenticated before loading the page.

This was a quick and dirty way of doing it and it is sort of missing using that endpoint.

I would like to add a "Ping" endpoint, that is @Secured and only returns a 200

Something like this:

@Stateless
@Path("/ping")
@Secure({ "developer", "admin" })
public class Ping {

    @GET
    public Response ping() {
        return Response.ok().build();
    }
}
Fix Versions: 0.9.0
Project: AeroGear Push
Priority: Major Major
Reporter: Lucas Holmquist
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira