51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
import { json } from "@remix-run/server-runtime";
|
|
import { ResolveErrorRequestBody } from "@trigger.dev/core/v3";
|
|
import { z } from "zod";
|
|
import { findErrorGroupResource } from "~/presenters/v3/ApiErrorGroupPresenter.server";
|
|
import { createActionApiRoute } from "~/services/routeBuilders/apiBuilder.server";
|
|
import { ErrorGroupActions } from "~/v3/services/errorGroupActions.server";
|
|
|
|
const ParamsSchema = z.object({
|
|
errorId: z.string(),
|
|
});
|
|
|
|
export const { action, loader } = createActionApiRoute(
|
|
{
|
|
params: ParamsSchema,
|
|
body: ResolveErrorRequestBody,
|
|
method: "POST",
|
|
allowJWT: true,
|
|
corsStrategy: "all",
|
|
findResource: async (params, authentication) =>
|
|
findErrorGroupResource(authentication, params.errorId),
|
|
authorization: {
|
|
action: "write",
|
|
resource: (params) => ({ type: "errors", id: params.errorId }),
|
|
},
|
|
},
|
|
async ({ authentication, body, resource, params }) => {
|
|
if (!resource) {
|
|
return json({ error: "Not found" }, { status: 404 });
|
|
}
|
|
|
|
const environment = authentication.environment;
|
|
|
|
await new ErrorGroupActions().resolveError(
|
|
{
|
|
organizationId: environment.organizationId,
|
|
projectId: environment.project.id,
|
|
environmentId: environment.id,
|
|
taskIdentifier: resource.taskIdentifier,
|
|
errorFingerprint: resource.fingerprint,
|
|
},
|
|
{
|
|
userId: authentication.actor?.sub ?? null,
|
|
resolvedInVersion: body.resolvedInVersion,
|
|
}
|
|
);
|
|
|
|
const updated = await findErrorGroupResource(authentication, params.errorId);
|
|
return json(updated);
|
|
}
|
|
);
|