add gitlab sign in method

This commit is contained in:
Tim Urista
2020-06-30 16:12:48 -07:00
parent b92e1533d1
commit e8a924a923
3 changed files with 100 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']}
/>
),
},
});