-
Notifications
You must be signed in to change notification settings - Fork 0
Frontend Routes
Daniel Upchurch edited this page Feb 26, 2021
·
9 revisions
User-facing routes
-'/' -- landing page ='/login' --login -'/signup' -- signup -'/categories' -- list of resource categories -'/categories/:category' -- list of resources in a category -'/resources/:id' -- specific resource detail
-'/api/auth/login' -- login -'/api/auth/signup' -- signup -'/api/resources' -- add a resource
Log In Page
- [
/login
]
Registration page
- [
/signup
]
Home page rendered whether user is logged in our not. Main component is the map component that shows all resources available
- [
/
]
List of resource categories which will link to a list of all resources in a particular category.
-[/resources
]
List of resources filtered by category parameter.
-[/categories/:categoryId
]
Detail about a specific resource
-[/resources/:id
]