mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
999 B
PHP
44 lines
999 B
PHP
<?php
|
|
|
|
namespace App\Jobs\GroupPipeline;
|
|
|
|
use App\Models\Group;
|
|
use App\Models\GroupMember;
|
|
use App\Services\NotificationService;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class JoinRejected implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
protected $member;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(GroupMember $member)
|
|
{
|
|
$this->member = $member;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
$member = $this->member;
|
|
$member->rejected_at = now();
|
|
$member->save();
|
|
|
|
NotificationService::createNotification($member->profile_id, $member->profile_id, 'group.join.rejected', $member->group_id, Group::class);
|
|
}
|
|
}
|