14 lines
339 B
Plaintext
14 lines
339 B
Plaintext
import { Github } from 'lucide-react'
|
|
import type { AuthProvider } from './_types'
|
|
|
|
export const github: AuthProvider = {
|
|
id: 'github',
|
|
labelKey: 'auth:providers.github',
|
|
Icon: Github,
|
|
tone: 'default',
|
|
envVars: ['GITHUB_CLIENT_ID', 'GITHUB_CLIENT_SECRET'],
|
|
login: () => {
|
|
window.location.href = '/auth/github/login'
|
|
},
|
|
}
|