GET /
- Initiate the web app
POST /api/users
- Create new userPATCH /api/users
- Edit user information
POST /api/session
- Sign InDELETE /api/session
- Sign Out
GET /api/pins
- Open pins index // bnbPOST /api/pins
- Create new pinsPATCH /api/pins/:id
- Edit single pinDELETE /api/pins/:id
- Delete single pin
GET /api/boards
- Open BoardsPOST /api/boards
- Create new boardsGET /api/boards/:id
- Open single board // return all the pins in the boardsDELETE /api/boards/:id
- Delete single board
GET /api/followers
- Open followersGET /api/following
- Get followingsPOST /api/following
- Follows UserDELETE /api/following/:id
- Unfollow User