Class PwaNotificationRest

java.lang.Object
io.meeds.pwa.rest.PwaNotificationRest

@RestController @RequestMapping("notifications") public class PwaNotificationRest extends Object
  • 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)