mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 06:56:15 +00:00
Setup Inertia (#593)
This commit is contained in:
@ -4,7 +4,6 @@
|
||||
|
||||
use App\Models\NotificationChannel;
|
||||
use App\Notifications\NotificationInterface;
|
||||
use App\Web\Pages\Settings\NotificationChannels\Index;
|
||||
use Illuminate\Support\Facades\Http;
|
||||
|
||||
class Discord extends AbstractNotificationChannel
|
||||
@ -39,7 +38,7 @@ public function connect(): bool
|
||||
__('Congratulations! 🎉'),
|
||||
__("You've connected your Discord to :app", ['app' => config('app.name')])."\n".
|
||||
__('Manage your notification channels')."\n".
|
||||
Index::getUrl()
|
||||
'/settings/notification-channels',
|
||||
);
|
||||
|
||||
if (! $connect) {
|
||||
|
@ -4,7 +4,6 @@
|
||||
|
||||
use App\Models\NotificationChannel;
|
||||
use App\Notifications\NotificationInterface;
|
||||
use App\Web\Pages\Settings\NotificationChannels\Index;
|
||||
use Illuminate\Support\Facades\Http;
|
||||
|
||||
class Slack extends AbstractNotificationChannel
|
||||
@ -39,7 +38,7 @@ public function connect(): bool
|
||||
__('Congratulations! 🎉'),
|
||||
__("You've connected your Slack to :app", ['app' => config('app.name')])."\n".
|
||||
__('Manage your notification channels')."\n".
|
||||
Index::getUrl()
|
||||
'/settings/notification-channels',
|
||||
);
|
||||
|
||||
if (! $connect) {
|
||||
|
Reference in New Issue
Block a user