bounswe / 2021SpringGroup11

Welcome to our github repository. We are 11th group of CMPE451 Fundamentals of Software Engineering course. We will work on a software project as a team throughout this term.
http://bounswe11.com.s3-website.us-east-2.amazonaws.com/
4 stars 0 forks source link

Endpoints for Home Page: Popular, For You, New #334

Closed kursatbakis closed 2 years ago

kursatbakis commented 2 years ago

Home Page displays lists of Topics (tags) and Learning paths. All seperate endpoints for popular, for you and new. Backend team can decide on the logic for them. Each endpoint should be in this structure:

{
  "tags": [
    {
    name, ID and isFav
    },
    {
    name, ID and isFav
    }
  ],
  "paths": [
    {
    photo, name, rating, effort, isFav, ID 
    }, 
    {
    photo, name, rating, effort, isFav, ID
    }
  ]
}
EAltunoglu commented 2 years ago

pop foryou new

EAltunoglu commented 2 years ago

It is implemented and reviewed. Unit test are also provided. Mobile&Frontend teams will be informed when it is deployed.