Merge pull request #698 from themarkwill/fix/errorInBaseApi

fix: Accept logged and not logged user in /base
This commit is contained in:
Andras Bacsai 2022-11-23 13:36:39 +01:00 committed by GitHub
commit 0c223dcec4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,14 @@ import { FastifyPluginAsync } from 'fastify';
import { errorHandler, listSettings, version } from '../../../../lib/common';
const root: FastifyPluginAsync = async (fastify): Promise<void> => {
fastify.addHook('onRequest', async (request) => {
try {
return await request.jwtVerify();
} catch(error){
return {};
}
})
fastify.get('/', async (request) => {
const teamId = request.user?.teamId;
const settings = await listSettings()