- Compatibile XF2 versions
- 2.2
- 2.3
- Additional requirements
- XenForo Resource Manager 2.2.0+
Enable comments on resource updates in XenForo Resource Manager for better engagement and interaction.
Screenshots:
Features:
- Lock Comments: Option to disable comments on specific updates.
- Reactions support
- Attachments support
- Report System support
- Warning Actions support
- Approval Queue support
- "What's New" Integration
- News Feed Support
- Moderator Logs
- Edit History
- Per-Category Permissions
- REST API Endpoints
New REST API endpoints:
POST
Creates a new resource update comment.
Parameters
Response
GET
Gets information about the specified resource update comment.
Parameters
Response
POST
Updates the specified resource update comment.
Parameters
Response
POST
Reacts to the specified resource update comment
Parameters
Response
DELETE
Deletes the specified resource update comment. Default to soft deletion.
Parameters
Response
Extended REST API endpoints:
GET
Additional parameters
POST
Additional parameters
POST
resource-update-comments/
Creates a new resource update comment.
Parameters
Input | Type | Description |
---|---|---|
message | string | |
author_alert | bool | |
author_alert_reason | bool | |
attachment_key | string | API attachment key to upload files. Attachment key context type must be resource_update_comment with context[comment_id] set to this resource update ID. |
Output | Description |
---|---|
success | true |
comment | Comment |
GET
resource-update-comments/{id}
Gets information about the specified resource update comment.
Parameters
Input | Type | Description |
---|---|---|
none |
Response | Description |
---|---|
comment | Comment |
POST
resource-update-comments/{id}
Updates the specified resource update comment.
Parameters
Input | Type | Description |
---|---|---|
message | string | |
author_alert | bool | |
author_alert_reason | bool | |
attachment_key | string | API attachment key to upload files. Attachment key context type must be resource_update_comment with context[comment_id] set to this resource update ID. |
Output | Description |
---|---|
success | true |
POST
resource-update-comments/{id}/react
Reacts to the specified resource update comment
Parameters
Input | Type | Description |
---|---|---|
reaction_id | integer | ⚠ ID of the reaction to use. Use the current reaction ID to undo. |
Output | Type | Description |
---|---|---|
success | true | |
action | string | "insert" or "delete" based on whether the reaction was added or removed. |
DELETE
resource-update-comments/{id}
Deletes the specified resource update comment. Default to soft deletion.
Parameters
Input | Type | Description |
---|---|---|
hard_delete | bool | |
reason | bool | |
author_alert | bool | |
author_alert_reason | bool |
Output | Type |
---|---|
success | true |
Extended REST API endpoints:
GET
resource-updates/{id}
Additional parameters
Input | Type | Description |
---|---|---|
with_comments | bool | If specified, the response will include a page of comments. |
POST
resource-updates/{id}
Additional parameters
Input | Type | Description |
---|---|---|
comment_open | bool | Toggles the ability to comment the resource update |
Screenshots: