feat: naver list import

Added Naver List Import in a similar style like the Google List Import. To keep the frontend clean I combined both list options.
This commit is contained in:
Marco Sadowski
2026-04-07 14:04:27 +02:00
parent 96080e8a03
commit d9d389d090
19 changed files with 336 additions and 33 deletions
+2
View File
@@ -107,6 +107,8 @@ export const placesApi = {
},
importGoogleList: (tripId: number | string, url: string) =>
apiClient.post(`/trips/${tripId}/places/import/google-list`, { url }).then(r => r.data),
importNaverList: (tripId: number | string, url: string) =>
apiClient.post(`/trips/${tripId}/places/import/naver-list`, { url }).then(r => r.data),
}
export const assignmentsApi = {