Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • A new endpoint to update the channel moderation configuration. For example, to re-add the ability for only members to create posts the API endpoint PATCH PUT /api/v4/channels/:channel_id/moderations/patch would receive:

Code Block
languagejson
[{
    "name": "create_post",
    "roles": {
        "members": true
    }
}]

...