designtopack/public/site/plugins/notifications/routes/read.php
2024-12-16 18:14:14 +01:00

13 lines
No EOL
325 B
PHP

<?php
return [
'pattern' => '(:all)read-notification.json',
'method' => 'POST',
'action' => function () {
$json = file_get_contents('php://input');
$data = json_decode($json);
$newNotifications = kirby()->user()->readNotification($data->notificationId);
return $newNotifications;
}
];