Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add routes for odd external service #15

Merged
merged 2 commits into from
Sep 1, 2018
Merged

Conversation

sbtsrbayer
Copy link
Contributor

One of the external sources we connect to oddly hits p3/login and p3/logout when using CAS protocol 3.0. Our java cas 4.2 installation is currently handling these routes, so I assume it should be supported.

@@ -17,6 +17,9 @@ function () {
Route::get('login', 'SecurityController@showLogin')->name($p.'login.get');
Route::post('login', 'SecurityController@login')->name($p.'login.post');
Route::get('logout', 'SecurityController@logout')->name($p.'logout')->middleware($auth);
Route::get('p3/login', 'SecurityController@showLogin')->name($p.'login.get');
Route::post('p3/login', 'SecurityController@login')->name($p.'login.post');
Route::get('p3/logout', 'SecurityController@logout')->name($p.'logout')->middleware($auth);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

name($p.'login.get') should be renamed as name($p.'v3.login.get'), respectively.

@sbtsrbayer
Copy link
Contributor Author

Sorry about that. I've updated as requested.

@leo108 leo108 merged commit 96a46d7 into leo108:master Sep 1, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants