2021-11-18 17:44:47 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$dropdowns = require __DIR__ . '/../users/dropdowns.php';
|
|
|
|
|
|
|
|
return [
|
2022-08-31 16:08:03 +02:00
|
|
|
'account' => [
|
|
|
|
'pattern' => '(account)',
|
|
|
|
'options' => $dropdowns['user']['options']
|
|
|
|
],
|
|
|
|
'account.file' => [
|
|
|
|
'pattern' => '(account)/files/(:any)',
|
|
|
|
'options' => $dropdowns['user.file']['options']
|
|
|
|
],
|
2021-11-18 17:44:47 +01:00
|
|
|
];
|