Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.31 KB

README.md

File metadata and controls

42 lines (33 loc) · 1.31 KB

K.N.B.N

K.N.B.N is dedicated to make your daily task easier than ever. You can even customize your task and board to meet your needs!

Apps Screenshot

Landing Page

alt text

board

alt text

Model

const cardSchema = new Schema ({
  cardID: {type: Number, unique: true},
  title : { type : String, required : true},
  content : { type: String, required: true},
  due_date : { type: Date, required: true},
  status : { type: String, required: true},
  in_charge : {type : String, required: true}
})

Endpoint

Method Routes Description
GET /api/cards Get all cards
POST /api/cards Create a card
GET /api/cards/:cardID Get a cards
PUT /api/cards/:cardID Update a card
DELETE /api/cards/:cardID Delete a card

Copyright

K.N.B.N is created with ❤️ follow us on gitHub