Age | Commit message (Collapse) | Author | |
---|---|---|---|
2025-02-17 | Check max(id) is uselessmain | Santo Cariotti | |
Remove condition on SQL query since we have only one position per user | |||
2025-02-03 | Fix when alert's reached users is null | Santo Cariotti | |
2025-02-03 | Show notifications list for alerts | Santo Cariotti | |
2025-02-03 | Fix doc for user password on isAdmin field | Santo Cariotti | |
2025-01-20 | Get the same notifications list for everyone | Santo Cariotti | |
2025-01-20 | Check tokens array length | Santo Cariotti | |
This is much better than `.filter` because there's already a check on the SQL query | |||
2025-01-20 | Filter only not-empty tokens | Santo Cariotti | |
2025-01-17 | Sound as binary string | Santo Cariotti | |
2024-12-21 | Show possible error on app creation | Santo Cariotti | |
2024-11-29 | Cache system to avoid duplicated alerts within 10 mins | Santo Cariotti | |
2024-11-29 | Use Expo on the AppState | Santo Cariotti | |
This because since Rust 1.83 it is suggested to not use the static reference cloning | |||
2024-10-20 | Fix new position creation time | Santo Cariotti | |
2024-10-20 | Save notification's position info | Santo Cariotti | |
Since we save the last user's position only, we can't be able to link a notification to a position. So, the better thing is to save a redundant lat/lng | |||
2024-10-18 | Filter positions by list of moving activities | Santo Cariotti | |
2024-10-18 | Use only one position per user | Santo Cariotti | |
2024-09-16 | Use `AppState` instead of `String` using some traits | Santo Cariotti | |
2024-09-16 | Use tracing rather than std(out|err) | Santo Cariotti | |
2024-09-13 | Text-to-speach API for alert sound generation | Santo Cariotti | |
2024-09-12 | Fix import | Santo Cariotti | |
2024-09-12 | Each alert has text{1,2,3} for the three possible area | Santo Cariotti | |
Alert level is moved to the notification struct | |||
2024-09-10 | Fix polygon validation | Santo Cariotti | |
2024-09-10 | Fix notification for alert with no position IDs | Santo Cariotti | |
2024-09-10 | Remove `OnFoot` moving activity | Santo Cariotti | |
2024-09-09 | Fix query to get positions for notifications | Santo Cariotti | |
2024-09-08 | Mutation for notification update | Santo Cariotti | |
2024-09-08 | Filter notifications by optional id and optional seen | Santo Cariotti | |
2024-09-07 | Add `userEdit` and `userPasswordEdit` mutations | Santo Cariotti | |
2024-09-07 | Formatted | Santo Cariotti | |
2024-09-07 | Use submodules mutations and query for types | Santo Cariotti | |
2024-09-05 | Fixs with clippy | Santo Cariotti | |
2024-09-05 | Send notifications by Expo API | Santo Cariotti | |
2024-09-05 | Create notifications from a new alert | Santo Cariotti | |
2024-09-05 | Keep a device token for the user notification | Santo Cariotti | |
2024-09-03 | Notification must be filtered by seen field | Santo Cariotti | |
2024-09-03 | Add notification type | Santo Cariotti | |
2024-09-03 | Fix typo | Santo Cariotti | |
2024-09-03 | Add user query used to find an user by id | Santo Cariotti | |
2024-09-03 | Limit `users` query to admins only | Santo Cariotti | |
2024-09-03 | Add name and address fields for users | Santo Cariotti | |
2024-09-03 | Add examples on doc | Santo Cariotti | |
2024-09-01 | Add extended area field for alerts | Santo Cariotti | |
2024-08-30 | Add filter for alert by id | Santo Cariotti | |
2024-08-30 | Use timestamp for `created_at` field | Santo Cariotti | |
2024-08-30 | Return user_id on JWT creation | Santo Cariotti | |
2024-08-29 | Valid the polygon before the alert creation | Santo Cariotti | |
2024-08-26 | Fix order of lat/lng | Santo Cariotti | |
2024-08-26 | Add alerts | Santo Cariotti | |
A payload for alert creation can be ``` { "query": "mutation NewAlert($input: AlertInput!) { newAlert(input: $input) { id createdAt level } }", "variables": { "input": { "points": [ { "latitude": 40.73061, "longitude": -73.935242 }, { "latitude": 40.741895, "longitude": -73.989308 }, { "latitude": 40.712776, "longitude": -74.005974 }, { "latitude": 40.73061, "longitude": -73.935242 }, ], "level": "TWO" } } } ``` | |||
2024-08-24 | Add new position | Santo Cariotti | |
``` curl -X POST http://localhost:8000/graphql \ -H "Content-Type: application/json" \ -H "Authorization: Bearer TOKEN" \ -d '{ "query": "mutation NewPosition($input: PositionInput!) { newPosition(input: $input) { id userId createdAt latitude longitude movingActivity } }", "variables": { "input": { "latitude": 44.502952, "longitude": 11.3114988, "movingActivity": "IN_VEHICLE" } } }' ``` | |||
2024-08-23 | Add `lastPositions` query with filter by `movingActivity` param | Santo Cariotti | |
2024-08-23 | Add doc | Santo Cariotti | |