Skip to content

Commit

Permalink
Document comment backend changes
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntimeX committed Jun 16, 2024
1 parent c0f64d4 commit bda2b77
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/migration/wsc60/deprecations_removals.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ With version 6.1, we have deprecated certain components and removed several othe
- `wcf\system\comment\manager\ICommentManager::canModerate()` ([WoltLab/WCF#5852](https://github.com/WoltLab/WCF/pull/5852/))
- `wcf\system\box\BoxHandler::createBoxCondition()` ([WoltLab/WCF#5906](https://github.com/WoltLab/WCF/pull/5906))
- `wcf\system\box\BoxHandler::addBoxToPageAssignments()` ([WoltLab/WCF#5906](https://github.com/WoltLab/WCF/pull/5906))
- Non-standard methods of `wcf\data\comment\CommentAction` ([WoltLab/WCF#5944](https://github.com/WoltLab/WCF/pull/5944))
- Non-standard methods of `wcf\data\comment\response\CommentResponseAction` ([WoltLab/WCF#5944](https://github.com/WoltLab/WCF/pull/5944))

### JavaScript

Expand Down
7 changes: 7 additions & 0 deletions docs/migration/wsc60/php.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,10 @@ The old practice of placing events where they are used is somewhat inconsistent
All PSR-14 events now use the new `event` namespace (located under `lib/event`). See the [PSR-14 event documentation](../../php/api/events.md) for details.

The changes are backwards compatible, the old namespaces can still be used.


## Comment Backend

The backend of the comment system has been revised and is now based on the new RPC controllers and commands.
The previous backend (the methods of `CommentAction` and `CommentResponseAction`) remains for backward compatibility reasons, but has been deprecated.
If you do not interact directly with the backend, no changes are usually required. [See](https://github.com/WoltLab/WCF/pull/5944) for more details.

0 comments on commit bda2b77

Please sign in to comment.