feat(api): daily challenge api (#61346)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
Tom
2025-07-17 04:34:46 -05:00
committed by GitHub
parent 3bcd6bbaf1
commit 29cd2d227d
13 changed files with 678 additions and 22 deletions

View File

@@ -52,6 +52,7 @@ import {
examEnvironmentOpenRoutes,
examEnvironmentValidatedTokenRoutes
} from './exam-environment/routes/exam-environment';
import { dailyCodingChallengeRoutes } from './daily-coding-challenge/routes/daily-coding-challenge';
type FastifyInstanceWithTypeProvider = FastifyInstance<
RawServerDefault,
@@ -231,6 +232,7 @@ export const build = async (
void fastify.register(publicRoutes.deprecatedEndpoints);
void fastify.register(publicRoutes.statusRoute);
void fastify.register(publicRoutes.unsubscribeDeprecated);
void fastify.register(dailyCodingChallengeRoutes);
return fastify;
};