masto
    Preparing search index...

    Interface IpBlock

    interface IpBlock {
        comment: string;
        createdAt: string;
        expiresAt: number | null;
        id: string;
        ip: string;
        severity: keyof IpBlockSeverityRegistry;
    }
    Index

    Properties

    comment: string

    The reason for this IP block.

    createdAt: string

    The create date of the ip block.

    expiresAt: number | null

    The number of seconds in which this IP block will expire.

    id: string

    The ID of the domain allow in the database.

    ip: string

    The IP address and prefix to block.

    severity: keyof IpBlockSeverityRegistry

    The policy to apply to this IP range.