Files
seminarhof-e2e-mqoc92hi/apps/app/src/auth/providers/github.ts.inactive
2026-06-22 00:08:38 +02:00

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'
},
}