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!
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}
})
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 |
K.N.B.N is created with ❤️ follow us on gitHub