chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:32:57 +08:00
commit cd420f9332
4811 changed files with 884702 additions and 0 deletions
@@ -0,0 +1,25 @@
import { json } from "@remix-run/server-runtime";
import { z } from "zod";
import { findErrorGroupResource } from "~/presenters/v3/ApiErrorGroupPresenter.server";
import { createLoaderApiRoute } from "~/services/routeBuilders/apiBuilder.server";
const ParamsSchema = z.object({
errorId: z.string(),
});
export const loader = createLoaderApiRoute(
{
params: ParamsSchema,
allowJWT: true,
corsStrategy: "all",
findResource: async (params, authentication) =>
findErrorGroupResource(authentication, params.errorId),
authorization: {
action: "read",
resource: (_resource, params) => ({ type: "errors", id: params.errorId }),
},
},
async ({ resource }) => {
return json(resource);
}
);