Hello,
can anybody help me figure out why
$events->listen(PostWasPosted::class, [$this, 'postWasPosted']);
Doesn't get fired in my extension. Actually none of the events, I tried few.
It is an instance of Flarum\Event\PostWasPosted;
but nothing seems to happen - method postWasPosted never gets called
I checked, extension is enabled, and I can confirm that method that starts the listener gets executed on page load
public function subscribe(Dispatcher $events)
{
$events->listen(PostWasPosted::class, [$this, 'postWasPosted']);
}
Thanks!