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

@@ -225,6 +225,10 @@ class AppAuth extends ChangeNotifier implements TokenSource {
return _tokenAdmin!;
}
String? getTokenOrNull() {
return _tokenAdmin;
}
@override
String getUserID() {
return _userID!;

View File

@@ -1,4 +1,3 @@
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:simplecloudnotifier/state/globals.dart';