Documentation
    Preparing search index...
    interface AbstractTrigger {
        action: string;
        channel?: string;
        configuration: any;
        description?: string;
        haltOnOnlyIf: (row: Row, user?: Row) => boolean;
        id?: number | null;
        min_role?: number;
        name?: string;
        table_id?: number | null;
        table_name?: string;
        when_trigger: string;
        clone(): Promise<AbstractTrigger>;
        delete(): Promise<void>;
        getTags(): Promise<AbstractTag[]>;
        runWithoutRow(runargs: any): Promise<boolean>;
        toJson(): any;
    }

    Implemented by

    Index

    Properties

    action: string
    channel?: string
    configuration: any
    description?: string
    haltOnOnlyIf: (row: Row, user?: Row) => boolean
    id?: number | null
    min_role?: number
    name?: string
    table_id?: number | null
    table_name?: string
    when_trigger: string

    Methods