signUp method

  1. @override
Future<Credentials> signUp({
  1. UserPassword? password,
  2. UserLogin? login,
})
override

Creates a new MyUser having only UserId and UserNum fields, and creates a new Session for this MyUser.

Once the created Session expires, the created MyUser looses access, if he doesn't re-sign in within that period of time.

Implementation

@override
Future<Credentials> signUp({UserPassword? password, UserLogin? login}) async {
  Log.debug(
    'signUp(password: ${password?.obscured}, login: $login)',
    '$runtimeType',
  );

  final response = await _graphQlProvider.signUp(
    login: login,
    password: password,
  );
  final success = response as SignUp$Mutation$CreateUser$CreateSessionOk;

  _myUserProvider.upsert(success.user.toDto());

  return success.toModel();
}