fix: Accept logged and not logged user in /base

This commit is contained in:
The Mark 2022-10-23 13:31:24 -04:00
parent 1d93658e56
commit 4448b86b93

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()