Kottster Packages API Reference
    Preparing search index...

    Interface IdentityProviderOptions

    interface IdentityProviderOptions {
        fileName: string;
        jwtSecretSalt?: string;
        passwordHashAlgorithm: "sha256" | "bcrypt";
        rootCustomPermissions?: string[];
        rootPassword?: string;
        rootUsername?: string;
    }
    Index

    Properties

    fileName: string

    The SQLite database file name.

    jwtSecretSalt?: string

    The salt used to sign JWT tokens

    passwordHashAlgorithm: "sha256" | "bcrypt"

    The password hashing algorithm to use.

    'bcrypt'
    
    rootCustomPermissions?: string[]

    The root admin custom permissions

    rootPassword?: string

    The root admin password

    rootUsername?: string

    The root admin username