Skip to content

2chanhaeng/today-sky-be

Repository files navigation

오늘의 하늘

Page

Today Sky FE 로 이동.

API

Path Method Params Data CRUD
/diary/year/month GET year, month yearmonth 월 일기 READS
/diary/year/month/date GET year, month, date yearmonthdate 일 일기 READ
POST CREATE,
UPDATE
DELETE DELETE
/todo/year/month GET year, month yearmonth 월 할 일 READS
/todo/year/month/date GET year, month, date yearmonthdate 일 할 일 READS
POST CREATE
/todo/todo_id PUT todo_id todo_id번 할 일 UPDATE
(content)
PATCH UPDATE
(checked)
DELETE DELETE
/todo/comment/todo_id POST todo_id todo_id 번 할 일 소감 CREATE
PUT UPDATE
DELETE DELETE

DB

erDiagram
  USER {
    id uuid
    username string
    password string
    refresh string
    salt string
  }
  DIARY {
    year integer
    month integer
    date integer
    user_id uuid
    content text
    year_month_date_user_id related
  }
  TODO {
    id uuid
    year integer
    month integer
    date integer
    user_id uuid
    content text
    checked boolean
  }
  COMMENT {
    todo_id uuid
    content text
  }
  USER ||--o{ DIARY : did
  USER ||--o{ TODO : will
  TODO ||--o| COMMENT : feel
Loading

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published