forked from fa/breadcrumb-the-shire
16 lines
841 B
PHP
16 lines
841 B
PHP
<?php
|
|
|
|
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],
|
|
['path' => 'imprint', 'target' => 'page/imprint', 'public' => true],
|
|
['path' => 'privacy', 'target' => 'page/privacy', 'public' => true],
|
|
];
|