designtopack/public/site/plugins/notifications/routes/read.php

13 lines
325 B
PHP
Raw Normal View History

2024-12-16 18:14:14 +01:00
<?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;
}
];