update
This commit is contained in:
parent
a76d3a0f35
commit
e3dc94a768
33 changed files with 368 additions and 184 deletions
|
|
@ -20,4 +20,10 @@ class AuthService {
|
|||
final user = session?.user;
|
||||
return user?.email;
|
||||
}
|
||||
|
||||
String? getCurrentUserId() {
|
||||
final session = _supabase.auth.currentSession;
|
||||
final user = session?.user;
|
||||
return user?.id;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue