Update Kirby and add password guard

This commit is contained in:
isUnknown 2026-02-09 17:05:41 +01:00
parent aaf1aa7890
commit 55d4e45891
987 changed files with 160116 additions and 66454 deletions

View file

@ -0,0 +1,14 @@
<?php
$drawers = require __DIR__ . '/../users/drawers.php';
return [
'account.fields' => [
...$drawers['user.fields'],
'pattern' => '(account)/fields/(:any)/(:all?)',
],
'account.file.fields' => [
...$drawers['user.file.fields'],
'pattern' => '(account)/files/(:any)/fields/(:any)/(:all?)',
],
];