mirror of
https://github.com/flarum/core.git
synced 2025-08-20 15:21:49 +02:00
Use new extenders (#36)
This commit is contained in:
@@ -1,24 +0,0 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Flarum.
|
||||
*
|
||||
* For detailed copyright and license information, please view the
|
||||
* LICENSE file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Flarum\Subscriptions\Listener;
|
||||
|
||||
use Flarum\Api\Event\Serializing;
|
||||
use Flarum\Api\Serializer\DiscussionSerializer;
|
||||
|
||||
class AddDiscussionSubscriptionAttribute
|
||||
{
|
||||
public function handle(Serializing $event)
|
||||
{
|
||||
if ($event->isSerializer(DiscussionSerializer::class)
|
||||
&& ($state = $event->model->state)) {
|
||||
$event->attributes['subscription'] = $state->subscription ?: false;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user