mirror of
https://github.com/documenso/documenso.git
synced 2025-11-21 20:21:38 +10:00
23 lines
1.1 KiB
TypeScript
23 lines
1.1 KiB
TypeScript
import { router } from '../trpc';
|
|
import { deleteAccountRoute } from './delete-account-route';
|
|
import { findUserSecurityAuditLogsRoute } from './find-user-security-audit-logs-route';
|
|
import { forgotPasswordRoute } from './forgot-password-route';
|
|
import { resetPasswordRoute } from './reset-password-route';
|
|
import { sendConfirmationEmailRoute } from './send-confirmation-email-route';
|
|
import { setProfileImageRoute } from './set-profile-image-route';
|
|
import { updatePasswordRoute } from './update-password-route';
|
|
import { updateProfileRoute } from './update-profile-route';
|
|
import { updatePublicProfileRoute } from './update-public-profile-route';
|
|
|
|
export const profileRouter = router({
|
|
findUserSecurityAuditLogs: findUserSecurityAuditLogsRoute,
|
|
updateProfile: updateProfileRoute,
|
|
updatePublicProfile: updatePublicProfileRoute,
|
|
updatePassword: updatePasswordRoute,
|
|
forgotPassword: forgotPasswordRoute,
|
|
resetPassword: resetPasswordRoute,
|
|
sendConfirmationEmail: sendConfirmationEmailRoute,
|
|
deleteAccount: deleteAccountRoute,
|
|
setProfileImage: setProfileImageRoute,
|
|
});
|