mirror of
https://github.com/Karaka-Management/oms-Exchange.git
synced 2026-01-30 01:38:41 +00:00
19 lines
447 B
PHP
19 lines
447 B
PHP
<?php
|
|
|
|
use phpOMS\Router\RouteVerb;
|
|
|
|
return [
|
|
'^.*/api/admin/exchange/import/profile.*$' => [
|
|
[
|
|
'dest' => '\Modules\Exchange\Controller:apiExchangeImport',
|
|
'verb' => RouteVerb::SET,
|
|
],
|
|
],
|
|
'^.*/api/admin/exchange/export/profile.*$' => [
|
|
[
|
|
'dest' => '\Modules\Exchange\Controller:apiExchangeExport',
|
|
'verb' => RouteVerb::SET,
|
|
],
|
|
],
|
|
];
|