liberation:meteor-onbeforelogout

v0.0.2Published 8 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

meteor-onbeforelogout

This package is just wrapper around a method Meteor.logout. It realizes callback function onBeforeLogout.

It lets better use of packages like ostrio:uiblocker.

Installation

meteor add liberation:meteor-onbeforelogout

Basic examples

1Meteor.onBeforeLogout = () => {
2  UIBlock.block('Please wait...')
3}
4
5Meteor.logout(() => {
6  UIBlock.unblock()
7})