Skip to content

Commit

Permalink
remove route service provider dependency from config
Browse files Browse the repository at this point in the history
  • Loading branch information
joelbutcher committed Mar 5, 2024
1 parent 87f1a60 commit 6a9da8d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions config/socialstream.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?php

use App\Providers\RouteServiceProvider;
use JoelButcher\Socialstream\Features;
use JoelButcher\Socialstream\Providers;

Expand All @@ -17,10 +16,10 @@
Features::providerAvatars(),
Features::refreshOAuthTokens(),
],
'home' => RouteServiceProvider::HOME,
'home' => '/dashboard',
'redirects' => [
'login' => RouteServiceProvider::HOME,
'register' => RouteServiceProvider::HOME,
'login' => '/dashboard',
'register' => '/dashboard',
'login-failed' => '/login',
'registration-failed' => '/register',
'provider-linked' => '/user/profile',
Expand Down

0 comments on commit 6a9da8d

Please sign in to comment.