lemmy-js-client
    Preparing search index...

    Type Alias ModBan

    When someone is banned from the site.

    type ModBan = {
        banned: boolean;
        expires_at?: string;
        id: ModBanId;
        instance_id: InstanceId;
        mod_person_id: PersonId;
        other_person_id: PersonId;
        published_at: string;
        reason?: string;
    }
    Index

    Properties

    banned: boolean
    expires_at?: string
    instance_id: InstanceId
    mod_person_id: PersonId
    other_person_id: PersonId
    published_at: string
    reason?: string