videosphere
    Preparing search index...

    Raw MongoDB document shape for the password_reset_tokens collection.

    interface PasswordResetTokenDocument {
        _id: string;
        tokenHash: string;
        userId: string;
        source: PasswordResetTokenSource;
        expiresAt: Date;
        usedAt?: Date;
        createdAt: Date;
        updatedAt: Date;
    }
    Index

    Properties

    _id: string
    tokenHash: string

    SHA-256 hex digest of the plaintext reset token.

    userId: string

    Distinguishes self-service forgot-password tokens from admin-issued links.

    expiresAt: Date
    usedAt?: Date
    createdAt: Date
    updatedAt: Date