Skip to content

Commit

Permalink
remove route validation
Browse files Browse the repository at this point in the history
  • Loading branch information
Joabesv committed Nov 25, 2024
1 parent fd7103d commit 34a62d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { listKicked } from './handlers/listKicked.js';
import type { FastifyInstance } from 'fastify';

export async function componentsRoute(app: FastifyInstance) {
app.get('/components', { schema: listComponentsSchema }, listComponents);
app.get('/components', listComponents);
app.get(
'/components/:componentId/kicks',
{ onRequest: [setStudentId] },
Expand Down

0 comments on commit 34a62d8

Please sign in to comment.