antonioribeiro/tracker

Session.user_id is set to null when the user logout

florianNgbala opened this issue · 0 comments

When a user logout of my application, the user_id of the corresponding session is set to null. I want to store the visit of my users but if they logout I don't have any information about their visits..

According to some other answers I tried this : 'do_not_track_paths' => ['api/*','logout', 'login'],

I have this message on the logs : path logout is not trackable. But the user_id is still set to null when the user logout.

What can I do to keep the information of the user_id ?

Thank you.