chore: seminarhof customer project

This commit is contained in:
e2e
2026-07-10 23:42:33 +02:00
commit 5bf86e6162
188 changed files with 20779 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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'
},
}