feat(api): try cors middleware on changelog routes
All checks were successful
Build and Push Docker Image / tests (push) Successful in 57s
Build and Push Docker Image / build (push) Successful in 3m56s

This commit is contained in:
Lars Hampe 2024-11-05 23:06:32 +01:00
parent 34db8e9b8d
commit 32a84e2011

View File

@ -1,4 +1,5 @@
import { OpenAPIHono } from '@hono/zod-openapi'
import { cors } from 'hono/cors'
import type { Variables } from '..'
import { verifyAuthentication } from '../utils/authentication'
import { type ContextModule, captureSentry } from '../utils/sentry'
@ -15,6 +16,7 @@ const app = new OpenAPIHono<{ Variables: Variables }>()
const module: ContextModule = {
name: 'changelog',
}
app.use('*', cors())
app.route('/commit', changelogCommitApi)
app.route('/version', version)
app.openapi(ById.route, async (c) => {