fix: Remove wrong/stuck proxy configurations

This commit is contained in:
Andras Bacsai
2022-02-26 22:01:24 +01:00
parent e0e50b4bd5
commit 4e2026aa2d
10 changed files with 76 additions and 2 deletions

View File

@@ -119,7 +119,8 @@ export async function getApplicationWebhook({ projectId, branch }) {
}
export async function getApplicationById({ id }) {
const body = await prisma.application.findFirst({
where: { id }
where: { id },
include: { destinationDocker: true }
});
return { ...body };