fix(comments): add comment view partials for public pages

This commit is contained in:
Yassine Doghri 2021-08-16 15:45:36 +00:00
commit fcecbe1c68
24 changed files with 338 additions and 80 deletions

View file

@ -170,4 +170,12 @@ class EpisodeCommentController extends BaseController
return redirect()->back();
}
public function attemptReply(): RedirectResponse
{
model('LikeModel')
->toggleLike(interact_as_actor(), $this->comment);
return redirect()->back();
}
}