feat(api): return commits on version by id request
This commit is contained in:
parent
9422eaed7e
commit
d6cb69ec3b
@ -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) {
|
||||||
|
@ -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')
|
||||||
|
Loading…
Reference in New Issue
Block a user