2026-02-09 23:02:34 -05:00

15 lines
658 B
PHP

<?php
declare(strict_types=1);
return [
'routes' => [
['name' => 'settings#getConfig', 'url' => '/api/config', 'verb' => 'GET'],
['name' => 'settings#setConfig', 'url' => '/api/config', 'verb' => 'PUT'],
['name' => 'settings#getCalendars', 'url' => '/api/calendars', 'verb' => 'GET'],
['name' => 'settings#getMailAccounts', 'url' => '/api/mail-accounts', 'verb' => 'GET'],
['name' => 'settings#getLog', 'url' => '/api/log', 'verb' => 'GET'],
['name' => 'settings#triggerSync', 'url' => '/api/trigger-sync', 'verb' => 'POST'],
],
];