mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 10:49:11 -04:00 
			
		
		
		
	* refactor(mobile): entities * store entity * refactor: models * remove domain * save all * bad refactor
		
			
				
	
	
		
			36 lines
		
	
	
		
			756 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			756 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:immich_mobile/entities/user.entity.dart';
 | |
| 
 | |
| final class UserStub {
 | |
|   const UserStub._();
 | |
| 
 | |
|   static final admin = User(
 | |
|     id: "admin",
 | |
|     updatedAt: DateTime(2021),
 | |
|     email: "admin@test.com",
 | |
|     name: "admin",
 | |
|     avatarColor: AvatarColorEnum.green,
 | |
|     profileImagePath: '',
 | |
|     isAdmin: true,
 | |
|   );
 | |
| 
 | |
|   static final user1 = User(
 | |
|     id: "user1",
 | |
|     updatedAt: DateTime(2022),
 | |
|     email: "user1@test.com",
 | |
|     name: "user1",
 | |
|     avatarColor: AvatarColorEnum.red,
 | |
|     profileImagePath: '',
 | |
|     isAdmin: false,
 | |
|   );
 | |
| 
 | |
|   static final user2 = User(
 | |
|     id: "user2",
 | |
|     updatedAt: DateTime(2023),
 | |
|     email: "user2@test.com",
 | |
|     name: "user2",
 | |
|     avatarColor: AvatarColorEnum.primary,
 | |
|     profileImagePath: '',
 | |
|     isAdmin: false,
 | |
|   );
 | |
| }
 |