13 lines
No EOL
325 B
PHP
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;
|
|
}
|
|
]; |