Compare commits

..

No commits in common. "f60002d98e3690a907b4c70bd1cfddce894309b3" and "708a6280d6b2185be36d64bd64f6a7c8318b4aa3" have entirely different histories.

2 changed files with 2 additions and 5 deletions

View File

@ -182,13 +182,10 @@ app.include_router(
)
# Include OAuth routes
# app.include_router(oauth_router, prefix="/auth", tags=["auth"])
app.include_router(oauth_router, prefix="/auth", tags=["auth"])
# Include your API router
app.include_router(api_router, prefix=settings.API_PREFIX)
# Include OAuth routes under the main API prefix
app.include_router(oauth_router, prefix=f"{settings.API_PREFIX}/auth", tags=["auth"])
# --- End Include API Routers ---
# Health check endpoint

View File

@ -39,7 +39,7 @@ import { useRouter } from 'vue-router';
const router = useRouter();
const handleGoogleLogin = () => {
window.location.href = '/api/v1/auth/google/login';
window.location.href = '/auth/google/login';
};
const handleAppleLogin = () => {