xiaowang/kirby/config/api/routes/translations.php

25 lines
396 B
PHP
Raw Normal View History

2021-10-29 18:05:46 +02:00
<?php
/**
* Translations Routes
*/
return [
2022-08-31 16:08:03 +02:00
[
'pattern' => 'translations',
'method' => 'GET',
'auth' => false,
'action' => function () {
return $this->kirby()->translations();
}
],
[
'pattern' => 'translations/(:any)',
'method' => 'GET',
'auth' => false,
'action' => function (string $code) {
return $this->kirby()->translations()->find($code);
}
]
2021-10-29 18:05:46 +02:00
];