feat: add admin page

This commit is contained in:
2026-08-07 03:09:59 +02:00
parent 2c734493cf
commit 1dd7e69aa8
19 changed files with 891 additions and 65 deletions
+6
View File
@@ -0,0 +1,6 @@
import 'pin_lock_service.dart';
class AdminPinService extends PinLockService {
AdminPinService({super.storage})
: super(saltKey: 'admin_pin_salt', hashKey: 'admin_pin_hash');
}