2024-10-29 11:35:48 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
Kirby::plugin('adrienpayet/pdc-notifications', [
|
2024-11-18 13:45:40 +01:00
|
|
|
'routes' => [
|
|
|
|
|
require(__DIR__ . '/routes/readAll.php'),
|
|
|
|
|
],
|
2024-10-30 10:56:11 +01:00
|
|
|
'userMethods' => [
|
2024-11-17 12:01:20 +01:00
|
|
|
'sendNotification' => require(__DIR__ . '/user-methods/send.php'),
|
2024-11-18 09:36:15 +01:00
|
|
|
'deleteNotification' => require(__DIR__ . '/user-methods/delete.php'),
|
2024-11-18 13:45:40 +01:00
|
|
|
'readNotification' => require(__DIR__ . '/user-methods/read.php'),
|
|
|
|
|
'readAllNotifications' => require(__DIR__ . '/user-methods/readAll.php')
|
2024-10-29 11:35:48 +01:00
|
|
|
]
|
|
|
|
|
]);
|