Today Sky FE 로 이동.
| Path | Method | Params | Data | CRUD |
|---|---|---|---|---|
/diary/year/month |
GET | year, month |
year년 month 월 일기 |
READS |
/diary/year/month/date |
GET | year, month, date |
year년 month 월 date 일 일기 |
READ |
| POST | CREATE, UPDATE |
|||
| DELETE | DELETE | |||
/todo/year/month |
GET | year, month |
year년 month 월 할 일 |
READS |
/todo/year/month/date |
GET | year, month, date |
year년 month 월 date 일 할 일 |
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 |
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