feat(core): Export OpenAPI spec for external tools (#5294)

The generated spec is available at /api/v1/openapi.yml
This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™ 2023-01-30 17:38:31 +01:00 committed by GitHub
parent 4bd9ed675e
commit 5cb7e5007d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -49,6 +49,10 @@ async function createApiRouter(
);
}
apiController.get(`/${publicApiEndpoint}/${version}/openapi.yml`, (req, res) => {
res.sendFile(openApiSpecPath);
});
apiController.use(
`/${publicApiEndpoint}/${version}`,
express.json(),