designtopack/public/site/config/routes/read-notification.php
2024-10-28 17:50:49 +01:00

15 lines
No EOL
370 B
PHP

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