fix(01-02): resolve compilation errors in auth models

- Fixed import path in AuthRepository to reach core errors
- Updated AuthUser.fromSupabase() to handle DateTime parsing safely
- Added UnknownAuthException for fallback error handling
- Fixed null-aware operators in AuthUser model
- All authentication files now compile without errors
This commit is contained in:
Dani B
2026-01-28 09:34:56 -05:00
parent 06e3ea48fb
commit 58f2b5bce4
3 changed files with 17 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
import '../../data/models/auth_user.dart';
import '../../../core/errors/auth_exceptions.dart';
import '../../../../core/errors/auth_exceptions.dart';
/// Authentication repository interface defining all authentication operations.
///