mirror of
https://github.com/flarum/core.git
synced 2025-07-23 01:31:40 +02:00
Be more specific as to when we require edit permission
Since we update per-user data (e.g. isLiked) through this command’s event
This commit is contained in:
@@ -21,14 +21,16 @@ class EditPostCommandHandler
|
||||
$user = $command->user;
|
||||
$post = $this->posts->findOrFail($command->postId, $user);
|
||||
|
||||
$post->assertCan($user, 'edit');
|
||||
|
||||
if ($post instanceof CommentPost) {
|
||||
if (isset($command->data['content'])) {
|
||||
$post->assertCan($user, 'edit');
|
||||
|
||||
$post->revise($command->data['content'], $user);
|
||||
}
|
||||
|
||||
if (isset($command->data['isHidden'])) {
|
||||
$post->assertCan($user, 'edit');
|
||||
|
||||
if ($command->data['isHidden']) {
|
||||
$post->hide($user);
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user