✏️ 正在编辑: routes.php
路径:
/srv/systems_dir/koruspay/application/configs/routes.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php $routes = [ 'home' => [ 'route' => '/', 'defaults' => [ 'controller' => 'index', 'action' => 'index' ] ], 'login' => [ 'route' => 'login', 'defaults' => [ 'controller' => 'auth', 'action' => 'login' ] ], 'logout' => [ 'route' => 'logout', 'defaults' => [ 'controller' => 'auth', 'action' => 'logout' ] ], 'splits' => [ 'route' => 'splits', 'defaults' => [ 'controller' => 'split', 'action' => 'listar' ] ], 'deleted-split' => [ 'route' => 'deleted-split/:id', 'defaults' => [ 'controller' => 'split', 'action' => 'deleted' ] ], 'detail-split' => [ 'route' => 'detail-split/:id', 'defaults' => [ 'controller' => 'split', 'action' => 'detail' ] ], 'create-charge-split' => [ 'route' => 'create-charge-split', 'defaults' => [ 'controller' => 'split', 'action' => 'create-charge/:id' ] ], 'transfer-tax' => [ 'route' => 'transfer-tax', 'defaults' => [ 'controller' => 'split', 'action' => 'transfer-tax' ] ], 'authenticate' => [ 'route' => 'auth', 'defaults' => [ 'controller' => 'authentication', 'action' => 'auth' ] ], 'send-split' => [ 'route' => 'send-split', 'defaults' => [ 'controller' => 'split', 'action' => 'send-split' ] ], 'reprocess' => [ 'route' => 'reprocess', 'defaults' => [ 'controller' => 'split', 'action' => 'reprocess' ] ], 'credentials' => [ 'route' => 'credentials', 'defaults' => [ 'controller' => 'company', 'action' => 'credentials' ] ], 'balance' => [ 'route' => 'balance', 'defaults' => [ 'controller' => 'transactions', 'action' => 'balance' ] ], 'extract' => [ 'route' => 'extract', 'defaults' => [ 'controller' => 'transactions', 'action' => 'extract' ] ], 'events' => [ 'route' => 'events', 'defaults' => [ 'controller' => 'automations', 'action' => 'events' ] ], 'create-split' => [ 'route' => 'create-split', 'defaults' => [ 'controller' => 'api-partner', 'action' => 'create-split' ] ], 'create-charge' => [ 'route' => 'create-charge', 'defaults' => [ 'controller' => 'api-partner', 'action' => 'create-charge' ] ], 'check-status' => [ 'route' => 'check-status', 'defaults' => [ 'controller' => 'api-partner', 'action' => 'check-status' ] ], 'balance-partner' => [ 'route' => 'balance-partner', 'defaults' => [ 'controller' => 'api-partner', 'action' => 'balance' ] ], 'withdraw-history' => [ 'route' => 'withdraw-history', 'defaults' => [ 'controller' => 'api-partner', 'action' => 'withdraw-history' ] ], 'withdraw-partner' => [ 'route' => 'withdraw-partner', 'defaults' => [ 'controller' => 'api-partner', 'action' => 'withdraw' ] ], 'status-check' => [ 'route' => 'status-check', 'defaults' => [ 'controller' => 'automations', 'action' => 'status-check' ] ], 'extract-check' => [ 'route' => 'extract-check', 'defaults' => [ 'controller' => 'automations', 'action' => 'get-extract' ] ], 'nfse-authorization' => [ 'route' => 'nfse-authorization', 'defaults' => [ 'controller' => 'automations', 'action' => 'nfse' ] ], 'download-nfse' => [ 'route' => 'download-nfse/:id', 'defaults' => [ 'controller' => 'nfse', 'action' => 'download' ] ], 'balance-korus' => [ 'route' => 'balance-korus', 'defaults' => [ 'controller' => 'automations', 'action' => 'balance-korus' ] ], 'withdraw-korus' => [ 'route' => 'withdraw-korus', 'defaults' => [ 'controller' => 'automations', 'action' => 'withdraw-korus' ] ], 'callback-transfeera' => [ 'route' => 'callback-transfeera', 'defaults' => [ 'controller' => 'automations', 'action' => 'callback-transfeera' ] ], 'download-multiple-nfse' => [ 'route' => 'download-multiple-nfse', 'defaults' => [ 'controller' => 'nfse', 'action' => 'download-multiple' ] ] ]; return [ 'resources' => [ 'router' => [ 'routes' => $routes ] ] ];
💾 保存文件
← 返回文件管理器