Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Do NOT MERGE (The functionality in this PR does not work properly)
This PR attempts to do the following:
./recipe-book
route upon login preventing the user from having to refresh the page to be redirected./
route upon logout preventing the user from having to refresh the page to be redirected.I am following a LevelUpTuts tutorial and for reference am stuck on this For reference THIS is this episode I am stuck on.
Desired outcome
I am looking to create login and logout redirects. For example when logging in you are automatically redirected to a desired page and upon log out the user is redirected to the home page. Currently the user has to physically refresh the page to make this happen.
What I have tried
The tutorial achieves this functionality with the following code in routes.js:
I have tried the above code, using the direct path like so
FlowRouter.go("./layouts/HomeLayout.html");
and using Blaze's render method in various ways as seen in the commented code above. Additionally, I read that it might be better to create template wrappers like in the docs HERE, but to no avail.The strange thing is that both the code above and the template wrappers render a console.log properly when logging in and out, but do not redirect to the appropriate page without the user having to physically refresh the page.