Add confirm=? query-param to delete-user route and confirm dialog in flutter [skip-tests]
All checks were successful
Build Docker and Deploy / Run Unit-Tests (push) Has been skipped
Build Docker and Deploy / Build Docker Container (push) Successful in 1m7s
Build Docker and Deploy / Deploy to Server (push) Successful in 11s

This commit is contained in:
2025-05-11 15:43:06 +02:00
parent 7bbe321d3c
commit 255fc9337c
17 changed files with 417 additions and 437 deletions

View File

@@ -190,6 +190,9 @@ class APIClient {
relURL: 'users/$uid',
fn: User.fromJson,
authToken: auth.getToken(),
query: {
'confirm': ['true']
},
);
}