Type alias UserOptions

UserOptions: {
    active?: boolean;
    extra?: Record<string, any>;
    passwd: string;
}

Options for modifying an ArangoDB user.

Type declaration

  • Optional active?: boolean

    Whether the ArangoDB user account is enabled and can authenticate.

    Default: true

  • Optional extra?: Record<string, any>

    Additional information to store about this user.

    Default: {}

  • passwd: string

    Password the ArangoDB user will use for authentication.

Generated using TypeDoc