-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
ally.txt
44 lines (41 loc) · 1.04 KB
/
ally.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/**
* Config source: https://git.io/JOdi5
*
* Feel free to let us know via PR, if you find something broken in this config
* file.
*/
import Env from '@ioc:Adonis/Core/Env'
import { AllyConfig } from '@ioc:Adonis/Addons/Ally'
/*
|--------------------------------------------------------------------------
| Ally Config
|--------------------------------------------------------------------------
|
| The `AllyConfig` relies on the `SocialProviders` interface which is
| defined inside `contracts/ally.ts` file.
|
*/
const allyConfig: AllyConfig = {
{{#providers.github}}
{{> github_provider}}
{{/providers.github}}
{{#providers.google}}
{{> google_provider}}
{{/providers.google}}
{{#providers.twitter}}
{{> twitter_provider}}
{{/providers.twitter}}
{{#providers.discord}}
{{> discord_provider}}
{{/providers.discord}}
{{#providers.linkedin}}
{{> linkedin_provider}}
{{/providers.linkedin}}
{{#providers.facebook}}
{{> facebook_provider}}
{{/providers.facebook}}
{{#providers.spotify}}
{{> spotify_provider}}
{{/providers.spotify}}
}
export default allyConfig