Initial integration with Quicken (Intuit API), rework oauth tables, update/test google login
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
use Laravel\Passport\Passport;
|
||||
use Leenooks\Traits\SingleOrFail;
|
||||
|
||||
class AppServiceProvider extends ServiceProvider
|
||||
@@ -16,7 +17,7 @@ class AppServiceProvider extends ServiceProvider
|
||||
*/
|
||||
public function register()
|
||||
{
|
||||
//
|
||||
Passport::ignoreMigrations();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -2,12 +2,15 @@
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Intuit\Traits\IntuitSocialite;
|
||||
use Laravel\Passport\Passport;
|
||||
use Illuminate\Support\Facades\Gate;
|
||||
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
||||
|
||||
class AuthServiceProvider extends ServiceProvider
|
||||
{
|
||||
use IntuitSocialite;
|
||||
|
||||
/**
|
||||
* The policy mappings for the application.
|
||||
*
|
||||
@@ -25,6 +28,7 @@ class AuthServiceProvider extends ServiceProvider
|
||||
public function boot()
|
||||
{
|
||||
$this->registerPolicies();
|
||||
$this->bootIntuitSocialite();
|
||||
Passport::routes();
|
||||
// Passport::enableImplicitGrant();
|
||||
|
||||
|
Reference in New Issue
Block a user