1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-31 15:24:31 +03:00

Merge pull request #904 from lommes/903-socialite-discord

add everything needed to use discord as social login provider
This commit is contained in:
Dan Brown
2018-07-29 16:18:10 +01:00
committed by GitHub
7 changed files with 57 additions and 9 deletions

View File

@ -108,6 +108,12 @@ return [
'redirect' => env('APP_URL') . '/login/service/twitch/callback',
'name' => 'Twitch',
],
'discord' => [
'client_id' => env('DISCORD_APP_ID'),
'client_secret' => env('DISCORD_APP_SECRET'),
'redirect' => env('APP_URL') . '/login/service/discord/callback',
'name' => 'Discord',
],
'ldap' => [
'server' => env('LDAP_SERVER', false),