You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
$dropdowns = require __DIR__ . '/../users/dropdowns.php';
|
|
|
|
return [
|
|
'account' => [
|
|
'pattern' => '(account)',
|
|
'options' => $dropdowns['user']['options']
|
|
],
|
|
'account.file' => [
|
|
'pattern' => '(account)/files/(:any)',
|
|
'options' => $dropdowns['user.file']['options']
|
|
],
|
|
];
|
|
|