diff --git a/backend/app/api/routes/users.py b/backend/app/api/routes/users.py index 765b1eb..0acacba 100644 --- a/backend/app/api/routes/users.py +++ b/backend/app/api/routes/users.py @@ -32,6 +32,13 @@ router = APIRouter(prefix="/users", tags=["users"]) def test_user(): return {"ok":"yes is"} + +@router.get('/testsync2') +def test_user(): + return {"ok":"yes is"} + + + @router.get( "/", dependencies=[Depends(get_current_active_superuser)], diff --git a/backend/app/core/config.py b/backend/app/core/config.py index 416910a..02af8c6 100644 --- a/backend/app/core/config.py +++ b/backend/app/core/config.py @@ -44,6 +44,7 @@ class Settings(BaseSettings): ] = [ "http://dashboard.daheimao.top", "https://dashboard.daheimao.top", + "http://120.76.41.122:5173" ] @computed_field # type: ignore[prop-decorator]