Google Sheet - OAuth "client" powered integrations (#415)
* fix `helpers.php` * fix `.eslintrc.cjs` * spreadsheet manager * fetch providers. set `oauth_id` for integrations * create spreadsheet on integration create event * connect OAuth accounts * display actions. connect account if missing * cleanup * handle form field change * map integration data object to `SpreadsheetData` * validate request * wip * redirect to integrations page * fix refresh token * add helper text * add extra integration info * refactor * refresh google token * fix validation * add tests * Fix linting issue * Update composer lock file --------- Co-authored-by: Julien Nahum <julien@nahum.net>
This commit is contained in:
@@ -4,9 +4,11 @@ namespace App\Providers;
|
||||
|
||||
use App\Events\Forms\FormSubmitted;
|
||||
use App\Events\Models\FormCreated;
|
||||
use App\Events\Models\FormIntegrationCreated;
|
||||
use App\Events\Models\FormIntegrationsEventCreated;
|
||||
use App\Events\SubscriptionCreated;
|
||||
use App\Listeners\Forms\FormCreationConfirmation;
|
||||
use App\Listeners\Forms\FormIntegrationCreatedHandler;
|
||||
use App\Listeners\Forms\FormIntegrationsEventListener;
|
||||
use App\Listeners\Forms\NotifyFormSubmission;
|
||||
use App\Listeners\HandleSubscriptionCreated;
|
||||
@@ -31,6 +33,9 @@ class EventServiceProvider extends ServiceProvider
|
||||
FormSubmitted::class => [
|
||||
NotifyFormSubmission::class
|
||||
],
|
||||
FormIntegrationCreated::class => [
|
||||
FormIntegrationCreatedHandler::class,
|
||||
],
|
||||
FormIntegrationsEventCreated::class => [
|
||||
FormIntegrationsEventListener::class,
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user