-
Notifications
You must be signed in to change notification settings - Fork 385
Expand file tree
/
Copy pathchisel-paths.php
More file actions
30 lines (26 loc) · 1.17 KB
/
chisel-paths.php
File metadata and controls
30 lines (26 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
return [
'login' => 'resources/js/pages/auth/login.tsx',
'register' => 'resources/js/pages/auth/register.tsx',
'welcome' => 'resources/js/pages/welcome.tsx',
'profile' => 'resources/js/pages/settings/profile.tsx',
'security' => 'resources/js/pages/settings/security.tsx',
'verify_email' => 'resources/js/pages/auth/verify-email.tsx',
'two_factor_challenge' => 'resources/js/pages/auth/two-factor-challenge.tsx',
'confirm_password' => 'resources/js/pages/auth/confirm-password.tsx',
'auth_types' => 'resources/js/types/auth.ts',
'two_factor_files' => [
'resources/js/components/manage-two-factor.tsx',
'resources/js/components/two-factor-setup-modal.tsx',
'resources/js/components/two-factor-recovery-codes.tsx',
'resources/js/components/ui/input-otp.tsx',
'resources/js/hooks/use-two-factor-auth.ts',
],
'two_factor_otp_package' => 'input-otp',
'passkey_files' => [
'resources/js/components/passkey-item.tsx',
'resources/js/components/passkey-register.tsx',
'resources/js/components/passkey-verify.tsx',
'resources/js/components/manage-passkeys.tsx',
],
];