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