11 lines
311 B
PHP
11 lines
311 B
PHP
<?php
|
|
|
|
Kirby::plugin('adrienpayet/pdc-notifications', [
|
|
// 'routes' => [
|
|
// require(__DIR__ . '/routes/mark-as-read.php'),
|
|
// ],
|
|
'userMethods' => [
|
|
'sendNotification' => require(__DIR__ . '/user-methods/send.php'),
|
|
'deleteNotification' => require(__DIR__ . '/user-methods/delete.php')
|
|
]
|
|
]);
|