-
Notifications
You must be signed in to change notification settings - Fork 176
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
Implement DeleteSession method in LocalSessionModule #50
Comments
Do you mind creating a pull request or proposing the code right here in the issue? |
@mariodivece You're right, it's more a pull request (enhancement) than issue. See my proposal. It should work but as usual, i've not installed vs2015 yet, so i can't test... PS : arghhh github don't support file with "patch" extension, it's a shame... |
Thanks @bufferUnderrun I have committed the changes. |
thanks |
The new Nuget was published. |
Hi,
I am facing an issue (not really a bug) with the LocalSessionModule and i will trying to explain clearly, not easy.
session.Data.TryAdd("user-roles", new List<String>() { "admin", "debug" })
). No problem.session.Data.Clear()
. The session in Embedio is always enabled but do no rely on extras infos i used to check securty (this user is not admin anymore). A new session is started for the user, new session in Embedio and the browser get a new "__session" AND the old one. No problem.Could you add a new method
DeleteSession(SessionInfo session)
in the LocalSessionModule to properly delete a session in embedio ?Thanks.
The text was updated successfully, but these errors were encountered: