lemmy-js-client
    Preparing search index...

    Type Alias ModLockPost

    When a moderator locks a post (prevents new comments being made).

    type ModLockPost = {
        id: ModLockPostId;
        locked: boolean;
        mod_person_id: PersonId;
        post_id: PostId;
        published_at: string;
        reason?: string;
    }
    Index

    Properties

    locked: boolean
    mod_person_id: PersonId

    post_id

    post_id: PostId
    published_at: string
    reason?: string