All checks were successful
Build and Push Docker Image / build (push) Successful in 7m45s
Replace Pipeline/Stage system with Competition/Round architecture. New schema: Competition, Round (7 types), JuryGroup, AssignmentPolicy, ProjectRoundState, DeliberationSession, ResultLock, SubmissionWindow. New services: round-engine, round-assignment, deliberation, result-lock, submission-manager, competition-context, ai-prompt-guard. Full admin/jury/applicant/mentor UI rewrite. AI prompt hardening with structured prompts, retry logic, and injection detection. All legacy pipeline/stage code removed. 4 new migrations + seed aligned. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
854 B
TypeScript
17 lines
854 B
TypeScript
import { router } from '../trpc'
|
|
|
|
// NOTE: All award procedures have been temporarily disabled because they depended on
|
|
// deleted models: Pipeline, Track (AWARD kind), SpecialAward linked via Track.
|
|
// This router will need complete reimplementation with the new Competition/Round/Award architecture.
|
|
// The SpecialAward model still exists and is linked directly to Competition (competitionId FK).
|
|
|
|
export const awardRouter = router({
|
|
// TODO: Reimplement award procedures with new Competition/Round architecture
|
|
// Procedures to reimplement:
|
|
// - createAwardTrack → createAward (link SpecialAward to Competition directly)
|
|
// - configureGovernance → configureAwardGovernance
|
|
// - routeProjects → setAwardEligibility
|
|
// - finalizeWinners → finalizeAwardWinner
|
|
// - getTrackProjects → getAwardProjects
|
|
})
|