diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-11-28 01:43:33 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-11-28 01:43:33 +0100 |
commit | f5d17ffcb6d09e8f3498ad50952b688f3729901e (patch) | |
tree | 948ca61d65318229c605cc1d85b370ed7940f2e5 /app | |
parent | 038be5daf65c3408304b3d7fbdb4c4003cfd1b6a (diff) |
Remove `alertd` service
Revert of 5ee7d92
Diffstat (limited to 'app')
-rw-r--r-- | app/(tabs)/index.tsx | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/app/(tabs)/index.tsx b/app/(tabs)/index.tsx index 9fff8f8..f4ff0ea 100644 --- a/app/(tabs)/index.tsx +++ b/app/(tabs)/index.tsx @@ -348,18 +348,28 @@ export default function HomeScreen() { } const response = await fetch( - `${process.env.EXPO_PUBLIC_ALERTD_URL}`, + `${process.env.EXPO_PUBLIC_API_URL}`, { method: "POST", headers: { + Authorization: `Bearer ${token}`, "Content-Type": "application/json", }, body: JSON.stringify({ - latitude: coords.latitude, - longitude: coords.longitude, - login: token, - uid: userId, - movingActivity, + query: ` + mutation NewPosition($input: PositionInput!) { + newPosition(input: $input) { + id userId createdAt latitude longitude movingActivity + } + } + `, + variables: { + input: { + latitude: coords.latitude, + longitude: coords.longitude, + movingActivity, + }, + }, }), }, ); |