summaryrefslogtreecommitdiffstats
path: root/src/main.rs
Commit message (Collapse)AuthorAgeFilesLines
* Show possible error on app creationSanto Cariotti2024-12-211-14/+17
|
* Use Expo on the AppStateSanto Cariotti2024-11-291-1/+1
| | | | | This because since Rust 1.83 it is suggested to not use the static reference cloning
* Use `AppState` instead of `String` using some traitsSanto Cariotti2024-09-161-17/+20
|
* Text-to-speach API for alert sound generationSanto Cariotti2024-09-131-1/+3
|
* doc: Show readme.md in main.rs fileSanto Cariotti2024-09-111-0/+1
|
* Send notifications by Expo APISanto Cariotti2024-09-051-0/+2
|
* Use timestamp for `created_at` fieldSanto Cariotti2024-08-301-1/+0
|
* Add CORSSanto Cariotti2024-08-291-2/+10
|
* Add position type and query on itSanto Cariotti2024-08-221-0/+1
|
* Authentication for endpointsSanto Cariotti2024-08-211-1/+3
|
* Add loginSanto Cariotti2024-08-211-4/+8
| | | | | | | | | | | | | | | | Fields sent are ``` { "query": "mutation Login($input: LoginCredentials!) { login(input: $input) { accessToken tokenType } }", "variables": { "input": { "email": "....", "password": "..." } } } ```
* Reformat graphql modSanto Cariotti2024-08-211-2/+2
|
* Add state for databaseSanto Cariotti2024-08-201-4/+18
|
* InitSanto Cariotti2024-08-201-0/+65