designtopack/public/site/plugins/notifications/routes/readAll.php
2024-11-18 13:45:40 +01:00

10 lines
No EOL
223 B
PHP

<?php
return [
'pattern' => '(:all)read-all-notifications.json',
'method' => 'GET',
'action' => function () {
$newNotifications = kirby()->user()->readAllNotifications();
return $newNotifications;
}
];