Interface AccountInitializerArgs

interface AccountInitializerArgs {
    accountStore: AccountStore;
    email: string;
    name?: string;
    password: string;
    passwordStore: PasswordStore;
    podCreator: PodCreator;
}

Properties

accountStore: AccountStore

Creates the accounts.

email: string

Email address for the account login.

name?: string

Name to use for the pod. If undefined the pod will be made in the root of the server.

password: string

Password for the account login.

passwordStore: PasswordStore

Adds the login methods.

podCreator: PodCreator

Creates the pods.