File tree Expand file tree Collapse file tree 4 files changed +6
-7
lines changed
Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 66 */
77
88import type { FastifyBaseLogger } from 'fastify' ;
9- import { EmailService } from './emailservice ' ;
9+ import { EmailService } from './emailService ' ;
1010
1111/**
1212 * Example: Send a welcome email to a new user
Original file line number Diff line number Diff line change 11// Email system exports
2- export { EmailService } from './emailservice ' ;
2+ export { EmailService } from './emailService ' ;
33export { TemplateRenderer } from './templateRenderer' ;
44export * from './types' ;
55
66// Re-export for convenience
7- import { EmailService } from './emailservice ' ;
7+ import { EmailService } from './emailService ' ;
88export default EmailService ;
Original file line number Diff line number Diff line change @@ -11,16 +11,16 @@ import { registerRoutes } from './routes'
1111import { PluginManager } from './plugin-system'
1212import { authHook } from './hooks/authHook' // Import the auth hook
1313import registerEmailRoute from './routes/auth/registerEmail'
14- import loginEmailRoute from './routes/auth/loginemail '
14+ import loginEmailRoute from './routes/auth/loginEmail '
1515import githubAuthRoutes from './routes/auth/github'
1616import logoutRoute from './routes/auth/logout'
1717import changePasswordRoute from './routes/auth/changePassword'
1818import updateProfileRoute from './routes/auth/updateProfile'
1919import verifyEmailRoute from './routes/auth/verifyEmail'
2020import resendVerificationRoute from './routes/auth/resendVerification'
2121import forgotPasswordRoute from './routes/auth/forgotPassword'
22- import resetPasswordRoute from './routes/auth/resetpassword '
23- import adminResetPasswordRoute from './routes/auth/adminresetpassword '
22+ import resetPasswordRoute from './routes/auth/resetPassword '
23+ import adminResetPasswordRoute from './routes/auth/adminResetPassword '
2424import githubStatusRoute from './routes/auth/githubStatus'
2525import {
2626 initializeDatabase ,
Original file line number Diff line number Diff line change 88 "strict" : true ,
99 "skipLibCheck" : true ,
1010 "esModuleInterop" : true ,
11- "allowSyntheticDefaultImports" : true ,
1211 "resolveJsonModule" : true ,
1312 "forceConsistentCasingInFileNames" : true ,
1413 "baseUrl" : " ." ,
You can’t perform that action at this time.
0 commit comments