mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-24 17:03:55 +10:00
50ba37a27f
* chore(release): v5.1.0 * feat: implement resume thumbnails * fix: remove unused mcp tools * docs: fix formatting of docs
38 lines
1.5 KiB
TypeScript
38 lines
1.5 KiB
TypeScript
import type { ProviderList } from "../services/auth";
|
|
import { protectedProcedure, publicProcedure } from "../context";
|
|
import { authService } from "../services/auth";
|
|
|
|
export const authRouter = {
|
|
providers: {
|
|
list: publicProcedure
|
|
.route({
|
|
method: "GET",
|
|
path: "/auth/providers",
|
|
tags: ["Authentication"],
|
|
operationId: "listAuthProviders",
|
|
summary: "List authentication providers",
|
|
description:
|
|
"Returns a list of all authentication providers enabled on this Reactive Resume instance, along with their display names. Possible providers include password-based credentials, Google, GitHub, LinkedIn, and custom OAuth. No authentication required.",
|
|
successDescription: "A map of enabled authentication provider identifiers to their display names.",
|
|
})
|
|
.handler((): ProviderList => {
|
|
return authService.providers.list();
|
|
}),
|
|
},
|
|
|
|
deleteAccount: protectedProcedure
|
|
.route({
|
|
method: "DELETE",
|
|
path: "/auth/account",
|
|
tags: ["Authentication"],
|
|
operationId: "deleteAccount",
|
|
summary: "Delete user account",
|
|
description:
|
|
"Permanently deletes the authenticated user's account, including all resumes, uploaded files (profile pictures, screenshots, PDFs), and associated data. This action is irreversible. Requires authentication.",
|
|
successDescription: "The user account and all associated data have been successfully deleted.",
|
|
})
|
|
.handler(async ({ context }): Promise<void> => {
|
|
return await authService.deleteAccount({ userId: context.user.id });
|
|
}),
|
|
};
|