14 lines
363 B
Plaintext
14 lines
363 B
Plaintext
import { KeyRound } from 'lucide-react'
|
|
import type { AuthProvider } from './_types'
|
|
|
|
export const microsoft: AuthProvider = {
|
|
id: 'microsoft',
|
|
labelKey: 'auth:providers.microsoft',
|
|
Icon: KeyRound,
|
|
tone: 'default',
|
|
envVars: ['MS_CLIENT_ID', 'MS_CLIENT_SECRET', 'MS_TENANT_ID'],
|
|
login: () => {
|
|
window.location.href = '/auth/microsoft/login'
|
|
},
|
|
}
|