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