twoFactorSetup.ts 482 B

1234567891011
  1. // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. import { EnumAfterAuthType } from '#shared/graphql/types.ts'
  3. import TwoFactorConfiguration from '../../components/AfterAuth/TwoFactorConfiguration.vue'
  4. import type { AfterAuthPlugin } from '../types.ts'
  5. export default {
  6. name: EnumAfterAuthType.TwoFactorConfiguration,
  7. component: TwoFactorConfiguration,
  8. title: __('Two-Factor Authentication Configuration Is Required'),
  9. } satisfies AfterAuthPlugin