wecare:accounts-entry-flow-blaze

Make signin and signout their own pages with routes.


License
MIT
Install
meteor add wecare:accounts-entry-flow-blaze@=1.0.1

Documentation

This is a account Entry that works with FlowRouter 2.0 and Blaze layout. A fix to use Blaze layout instead of flow layout. .

Getting started

Install:

meteor add wecare:accounts-entry-flow-blaze

See the original package for more details on usage and examples. The differences are described here:

Ensuring signed in users for routes

Use the helper function AccountsEntrySignInRequired in an entry trigger for any route that requires users to be signed in. This will redirect the user to the included sign-in page and stop any rendering. Accounts-entry also tracks where the user was trying to go and will route them back after sign in.

Here is a route example:

FlowRouter.route('/dashboard', {
		name: 'dashboard',
		triggersEnter: [
			AccountsEntrySignInRequired
		],
		action: function(params) {
			FlowLayout.render('dashboard');
		}
	}
);

You can also apply this to every route at once (making sure to exclude the logged out route):

FlowRouter.triggers.enter([AccountsEntrySignInRequired], {except: ['loggedOut']});

If you want to change the render you can always use the triggers in FlowRouter:

FlowRouter.triggers.enter([trackRouteEntry], {only: ["entrySignIn"]});