Files

17 lines
931 B
PHP
Raw Permalink Normal View History

<?php
2026-03-05 11:17:42 +01:00
return [
['path' => 'login', 'target' => 'auth/login', 'public' => true],
['path' => 'register', 'target' => 'auth/register', 'public' => true],
['path' => 'logout', 'target' => 'auth/logout', 'public' => false],
['path' => 'profile', 'target' => 'account/profile', 'public' => false],
['path' => 'password/forgot', 'target' => 'auth/forgot', 'public' => true],
['path' => 'password/verify', 'target' => 'auth/verify', 'public' => true],
['path' => 'password/reset', 'target' => 'auth/reset', 'public' => true],
['path' => 'verify-email', 'target' => 'auth/verify-email', 'public' => true],
['path' => 'lang', 'target' => 'lang', 'public' => true],
2026-03-12 14:09:06 +01:00
['path' => 'imprint', 'target' => 'public-page/imprint', 'public' => true],
['path' => 'privacy', 'target' => 'public-page/privacy', 'public' => true],
['path' => 'terms', 'target' => 'public-page/terms', 'public' => true],
];