feat(admin): add resend verification email op

This commit is contained in:
Hampus Kraft
2026-02-18 19:04:25 +00:00
parent 2be274e762
commit 08eaad6f76
5 changed files with 78 additions and 0 deletions

View File

@@ -272,6 +272,12 @@ export const VerifyUserEmailRequest = z.object({
export type VerifyUserEmailRequest = z.infer<typeof VerifyUserEmailRequest>;
export const ResendVerificationEmailRequest = z.object({
user_id: SnowflakeType.describe('ID of the user to resend verification email to'),
});
export type ResendVerificationEmailRequest = z.infer<typeof ResendVerificationEmailRequest>;
export const SendPasswordResetRequest = z.object({
user_id: SnowflakeType.describe('ID of the user to send password reset to'),
});