feat: Refactor StaffSession to remove user field and update related session handling
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
import 'package:krow_domain/krow_domain.dart' as domain;
|
||||
|
||||
class StaffSession {
|
||||
const StaffSession({required this.user, this.staff, this.ownerId});
|
||||
const StaffSession({this.staff, this.ownerId});
|
||||
|
||||
final domain.User user;
|
||||
final domain.Staff? staff;
|
||||
final String? ownerId;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user