Refactor API under /auth/api

This commit is contained in:
2025-09-03 02:32:19 +00:00
parent 5281432c96
commit 6e5ea9eac0
7 changed files with 208 additions and 240 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ const copyLink = async (event) => {
onMounted(async () => {
try {
const response = await fetch('/auth/create-link', { method: 'POST' })
const response = await fetch('/auth/api/create-link', { method: 'POST' })
const result = await response.json()
if (result.detail) throw new Error(result.detail)