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