Merge pull request #1500 from timurista/timurista

Add gitlab sign in method #343
This commit is contained in:
Patrik Oldsberg
2020-07-06 19:21:44 +02:00
committed by GitHub
5 changed files with 117 additions and 2 deletions
+4 -1
View File
@@ -31,7 +31,10 @@ const app = createApp({
plugins: Object.values(plugins),
components: {
SignInPage: props => (
<SignInPage {...props} providers={['guest', 'google', 'custom', 'okta']} />
<SignInPage
{...props}
providers={['guest', 'google', 'custom', 'okta', 'gitlab']}
/>
),
},
});