Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
e6dc7042
Commit
e6dc7042
authored
Jan 20, 2023
by
Dominik Hebeler
Browse files
fixed imports for routes
parent
5fb0efa4
Changes
1
Hide whitespace changes
Inline
Side-by-side
metager/routes/session.php
View file @
e6dc7042
<?php
use
App\Http\Controllers\AdminInterface
;
use
App\Http\Controllers\HumanVerification
;
# In this File we collect all routes which require a session or other cookies to be active
Route
::
get
(
'login'
,
[
Vizir\KeycloakWebGuard\Controllers\AuthController
::
class
,
"login"
])
->
name
(
'keycloak.login'
);
Route
::
get
(
'logout'
,
[
Vizir\KeycloakWebGuard\Controllers\AuthController
::
class
,
"logout"
])
->
name
(
'keycloak.logout'
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment