feat(api): return commits on version by id request

This commit is contained in:
Lars Hampe 2024-11-10 07:27:00 +01:00
parent 9422eaed7e
commit d6cb69ec3b
2 changed files with 4 additions and 1 deletions

View File

@ -36,6 +36,9 @@ export const registerVersionById = (api: typeof changelogVersionApi) => {
const versionResult = await db.query.changelog_version.findFirst({ const versionResult = await db.query.changelog_version.findFirst({
where: eq(changelog_version.id, id), where: eq(changelog_version.id, id),
with: {
commits: true,
},
}) })
if (!versionResult) { if (!versionResult) {

View File

@ -25,6 +25,6 @@ export const CommitOutput = z
email: z.string().email(), email: z.string().email(),
date: z.string(), date: z.string(),
}), }),
body: z.string().optional(), body: z.string().optional().nullable(),
}) })
.openapi('Commit') .openapi('Commit')