Last active
September 4, 2022 20:34
-
-
Save antonkalik/72c69bd1c095ff315d239d3ae37511ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"/" // -> Home view depends on session | |
"/about" // -> About show with session and without | |
"/login" // -> Login show with without session only | |
"/signup" // -> Sign Up show without session only | |
"/forgot-password" // -> Forgot Password show without session only | |
"/account" // -> User show with session only | |
"/settings" // -> Settings show with session only | |
"/posts" // -> Posts and nested routes show with session only | |
"*" // -> Not Found show without dependencies at all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment