Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/calendar/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default function CalendarPage() {

try {
const apiUrl = process.env.NEXT_PUBLIC_STASH_API_URL
const response = await fetch(`${apiUrl}/api/calendar/events`, {
const response = await fetch(`${apiUrl}/externals/calendar/events`, {
method: 'POST',
headers: {
'Authorization': `Bearer ${accessToken}`,
Expand Down
2 changes: 1 addition & 1 deletion app/lib/health.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export async function checkStashHealth(): Promise<ServiceHealth> {
}

try {
const res = await fetch(`${url}/internal/status`, {
const res = await fetch(`${url}/internals/status`, {
next: { revalidate: 300 },
signal: AbortSignal.timeout(5000),
})
Expand Down
10 changes: 10 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

<!-- CHANGELOG_START -->

## v0.0.10
`2026.01.15 00:30`

Stash API endpoint path 업데이트

- Health API: `/internal/status` → `/internals/status`
- Calendar API: `/api/calendar/events` → `/externals/calendar/events`

---

## v0.0.9
`2026.01.14 17:30`

Expand Down