Package io.meeds.pwa.rest
Class PwaNotificationRest
java.lang.Object
io.meeds.pwa.rest.PwaNotificationRest
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetNotification(jakarta.servlet.http.HttpServletRequest request, long notificationId) voidupdateNotificationProperty(jakarta.servlet.http.HttpServletRequest request, long notificationId, String action)
-
Constructor Details
-
PwaNotificationRest
public PwaNotificationRest()
-
-
Method Details
-
getNotification
@GetMapping("{id}") @Secured("users") public PwaNotificationMessage getNotification(jakarta.servlet.http.HttpServletRequest request, @PathVariable("id") long notificationId) -
updateNotificationProperty
@PatchMapping(path="{id}", consumes="application/x-www-form-urlencoded") @Secured("users") public void updateNotificationProperty(jakarta.servlet.http.HttpServletRequest request, @PathVariable("id") long notificationId, @RequestParam("action") String action)
-