2015-07-12 21:01:42 +02:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 20:31:09 +02:00
|
|
|
namespace BookStack\Providers;
|
2015-07-12 21:01:42 +02:00
|
|
|
|
|
|
|
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
|
2017-02-04 12:01:49 +01:00
|
|
|
use SocialiteProviders\Manager\SocialiteWasCalled;
|
2015-07-12 21:01:42 +02:00
|
|
|
|
|
|
|
class EventServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The event listener mappings for the application.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $listen = [
|
2017-02-04 12:01:49 +01:00
|
|
|
SocialiteWasCalled::class => [
|
|
|
|
'SocialiteProviders\Slack\SlackExtendSocialite@handle',
|
2017-10-01 14:19:17 +02:00
|
|
|
'SocialiteProviders\Azure\AzureExtendSocialite@handle',
|
2017-11-26 16:41:29 +01:00
|
|
|
'SocialiteProviders\Okta\OktaExtendSocialite@handle',
|
2018-01-31 16:02:07 +01:00
|
|
|
'SocialiteProviders\GitLab\GitLabExtendSocialite@handle',
|
2018-01-29 09:28:56 +01:00
|
|
|
'SocialiteProviders\Twitch\TwitchExtendSocialite@handle',
|
2018-06-28 09:01:36 +02:00
|
|
|
'SocialiteProviders\Discord\DiscordExtendSocialite@handle',
|
2015-07-12 21:01:42 +02:00
|
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register any other events for your application.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-09-17 19:22:04 +02:00
|
|
|
public function boot()
|
2015-07-12 21:01:42 +02:00
|
|
|
{
|
2016-09-17 19:22:04 +02:00
|
|
|
parent::boot();
|
2015-07-12 21:01:42 +02:00
|
|
|
}
|
|
|
|
}
|