-
Notifications
You must be signed in to change notification settings - Fork 0
Meeting 05 03 Sat
alyu edited this page May 5, 2022
·
1 revision
- Decide the final version for implementation
- Discuss the details of the proposal
- Distribute the work for the proposal
- Talk about each other’s version of the webapp
- Posts as review-focused or food-focused
- Review focused solves complications
- How to get the food data
- Add post
- Add checks to see if new posts are duplicates
- Have a small database at the start (fetch food image from google api
- How many post per food per location
- Adding hashtag to label the food
- Maybe api to get similar food
- Instagram style of food post
- Finalising the features
- Proposal work distribution
- Wed 09/03
- Technology research
- Proposal confirmation
- Home
- Requirements
- Technologies
- Project management strategy
- Tasks breakdown
- Member contributions
- Meeting minutes
- API endpoints summary
- Users
-
Create a new user :
POST /api/users/
-
Get a single user :
GET /api/users/:id
-
Get a single user (firebase ID) :
GET /api/users/firebase/:id
-
Update a user:
PUT /api/users/:id
-
Create a new user :
- Posts
-
Get a single post
GET /api/posts/:id
-
Get a list of posts :
GET /api/posts/
-
Search for a post :
GET /api/posts/search
-
Create a new post :
POST /api/posts/
-
Like a post :
POST /api/posts/like-post
-
Unlike a post :
POST /api/posts/unlike-post
-
Upload an image for a post :
POST /api/posts/image
-
Get a single post
- Restaurant
-
Get restaurant :
GET /api/restaurants/
-
Get restaurant :