meteor-stale-session
meteor-stale-session copied to clipboard
Stale session and session timeout handling for meteorjs
in **Meteor.startup(function () { …** i have added **Accounts.validateLoginAttempt(function(attempt) { …** with a **console.log( attempt.type …** it result the unattended reconnect is of type “resume” this occur ramdomly once in...
If an application wants to allow users to disable this on a per-user basis it's currently not possible. Something like this would be helpful ```js meteorStaleSession.disableForUser(userId); ``` which could update...
It would be good to have an automated test for this
I currently have the following flags set in my app's `.json` file. Even with `staleSessionInactivityTimeout` set to ~30 days and `staleSessionForceLogout` set to false, I notice that about every couple...
If a user logs in and closes the browser before the heartbeat interval has elapsed they never get a heartbeat registered and thus never get logged out. I've fixed this...
After adding this package to an app, the regular Meteor Accounts package loginButtons template still shows the Sign out button, but clicking it has no effect. No errors are shown...
- Add TriggerCloseTimeoutCountdownDialog & TriggerOpenTimeoutCountdownDialog custom events - TriggerOpenTimeoutCountdownDialog returns the remaining time when the page will log out - Set showCountdownDialog and dialogTimeout properties under public object in settings.json...
I didn't want sessions to expire for specific user roles so I had to add this usersRoles option. This might be a useful feature for other users so I decided...
In the README: > As it currently stands, (meteor 0.6.6.3)
Cool package, super easy setup. A lot of my router hooks have Meteor.user checks, and updating the Meteor.user collection causes them to fire. This would probably be resolved if the...