Next SSR middleware

    Interface GitHubOAuthOption

    interface GitHubOAuthOption {
        allow_signup?: boolean;
        apiBaseURL?: string;
        client_id: string;
        client_secret: string;
        login?: string;
        rootBaseURL?: string;
        scopes?: GitHubOAuthScope[];
    }

    Hierarchy

    • Partial<Record<"rootBaseURL" | "apiBaseURL" | "login", string>>
    • Record<"client_id" | "client_secret", string>
      • GitHubOAuthOption
    Index

    Properties

    allow_signup?: boolean
    apiBaseURL?: string
    client_id: string
    client_secret: string
    login?: string
    rootBaseURL?: string
    scopes?: GitHubOAuthScope[]
    MMNEPVFCICPMFPCPTTAAATR