LGeoff31 / todo_list

Home Page:https://todo-list-lgeoff31.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Backend API Interface

Get all of the todos

Gets all of the todos

GET /todos/list

Parameters: None

Response: List of Todos

Todo = {
    id: string,
    created_at: Date,
    title: string,
    due_date: Date,
    description: string,
    is_complete: boolean
}

##Create a TODO

POST/todos/create

Parameter: {
    title: String,
    date: Date,
    description: String,
}

Response: Status of success or error


NEED TO DO

  • View all of the todos
  • Create a todo
  • Make it look nice
  • Allow you to check off a todo
  • Make todos that are check off be at the bottom
  • Delete a todo
    • Mark it as archived and do not show the archived ones
    • edit button
    • delete archived + new page only archived ones button restore

todo_list

About

https://todo-list-lgeoff31.vercel.app


Languages

Language:TypeScript 99.5%Language:JavaScript 0.5%