-
Notifications
You must be signed in to change notification settings - Fork 187
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
Incorrect routing on sign-in #25
Comments
Thanks for catching bug, Jonathan :) |
You're welcome and thank you for the fantastic package |
If I install "accounts-entry" with mrt, I don't get this bug fixed. Could you please update the version? |
Sure, gimme a few minutes to push it. |
Pushed and updated the changelog. Try updating with meteorite now. |
Thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently the sign-in code is as follows:
Template.entrySignIn.events
'submit #signIn': (event) ->
event.preventDefault()
Session.set('email', $('input[name="email"]').val())
Session.set('password', $('input[name="password"]').val())
Shouldn't that Router.go('/') be:
Router.go Session.get('entrySettings').dashboardRoute
?
The text was updated successfully, but these errors were encountered: