Skip to content

blanford-fox-2016/knbn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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