3ffd3fc819
feat: database backup is realtime now
29 lines
614 B
PHP
29 lines
614 B
PHP
<?php
|
|
|
|
namespace App\Livewire;
|
|
|
|
use Livewire\Component;
|
|
|
|
class Sponsorship extends Component
|
|
{
|
|
public function getListeners()
|
|
{
|
|
$teamId = auth()->user()->currentTeam()->id;
|
|
return [
|
|
"echo-private:team.{$teamId},TestEvent" => 'testEvent',
|
|
];
|
|
}
|
|
public function testEvent()
|
|
{
|
|
$this->dispatch('success', 'Realtime events configured!');
|
|
}
|
|
public function disable()
|
|
{
|
|
auth()->user()->update(['is_notification_sponsorship_enabled' => false]);
|
|
}
|
|
public function render()
|
|
{
|
|
return view('livewire.sponsorship');
|
|
}
|
|
}
|