v0.1.18 - 설정 화면과 기간형 D-DAY 관리 추가

This commit is contained in:
2026-04-22 09:47:04 +09:00
parent 4355185203
commit fe538fc88b
13 changed files with 1033 additions and 173 deletions

View File

@@ -47,3 +47,11 @@ export async function createGoal(token, payload) {
body: payload,
})
}
export async function updateGoal(token, goalId, payload) {
return request(`/api/goals/${goalId}`, {
method: 'PATCH',
token,
body: payload,
})
}