mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
32 lines
860 B
Dart
32 lines
860 B
Dart
import 'package:dartz/dartz.dart';
|
|
import 'package:flowy_sdk/dispatch/dispatch.dart';
|
|
import 'package:flowy_sdk/protobuf/flowy-user/protobuf.dart';
|
|
|
|
class AuthRepository {
|
|
Future<Either<UserDetail, UserError>> signIn(
|
|
{required String? email, required String? password}) {
|
|
//
|
|
final request = SignInRequest.create()
|
|
..email = email ?? ''
|
|
..password = password ?? '';
|
|
|
|
return UserEventSignIn(request).send();
|
|
}
|
|
|
|
Future<Either<UserDetail, UserError>> signUp(
|
|
{required String? name,
|
|
required String? password,
|
|
required String? email}) {
|
|
final request = SignUpRequest.create()
|
|
..email = email ?? ''
|
|
..name = name ?? ''
|
|
..password = password ?? '';
|
|
|
|
return UserEventSignUp(request).send();
|
|
}
|
|
|
|
Future<Either<Unit, UserError>> signOut() {
|
|
return UserEventSignOut().send();
|
|
}
|
|
}
|