Skip to content
This repository was archived by the owner on Aug 2, 2024. It is now read-only.

Commit a5f13bf

Browse files
committed
Bugfix: middleware needed for session
1 parent 523d9cd commit a5f13bf

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/CUMSA/Raven/UcamWebauth.php

-1
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,6 @@ function callback() {
739739
if (isset($token[$this->WLS_TOKEN_LIFE]) and $token[$this->WLS_TOKEN_LIFE] > 0 and $token[$this->WLS_TOKEN_LIFE] < $expiry) {
740740
$expiry = $token[$this->WLS_TOKEN_LIFE];
741741
}
742-
var_dump($this->session_ticket);
743742

744743
// populate session ticket with information collected so far
745744

src/routes.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22
Route::group([
33
'prefix' => 'auth/raven',
4+
'middleware' => 'web',
45
], function () {
56
Route::get('/', array(
67
'as' => 'raven_login',

0 commit comments

Comments
 (0)