Prepending the url template configured for updating notifications with a '/'

merge-requests/7/head
prabathabey 8 years ago
parent 78057b2992
commit 0125310440

@ -125,7 +125,7 @@ public interface NotificationManagementService {
int limit);
@PUT
@Path("{id}/mark-checked")
@Path("/{id}/mark-checked")
@ApiOperation(
produces = MediaType.APPLICATION_JSON,
httpMethod = "PUT",

@ -76,7 +76,7 @@ public class NotificationManagementServiceImpl implements NotificationManagement
}
@PUT
@Path("{id}/mark-checked")
@Path("/{id}/mark-checked")
public Response updateNotificationStatus(
@PathParam("id") int id) {
String msg;

Loading…
Cancel
Save