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

10 lines
223 B
PHP
Raw Normal View History

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