Skip to content

Commit

Permalink
Remove unused prop
Browse files Browse the repository at this point in the history
  • Loading branch information
motechFR committed Oct 24, 2024
1 parent 2e84d0a commit d856178
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/lib/proposals/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ export type WorkflowEvaluationJson = Pick<ProposalEvaluation, 'id' | 'title' | '
} | null;
dueDate?: Date | null;
showAuthorResultsOnRubricFail?: boolean | null;
publishCommentsAndScores?: boolean | null;
};

export type ProposalWorkflowTyped = Omit<ProposalWorkflow, 'evaluations'> & {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "ProposalEvaluation" ADD COLUMN "showAuthorResultsOnRubricFail" BOOLEAN;
1 change: 0 additions & 1 deletion src/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -1383,7 +1383,6 @@ model ProposalEvaluation {
appealer User? @relation(fields: [appealedBy], references: [id], onDelete: SetNull, name: "appealedBy")
shareReviews Boolean? @default(false)
dueDate DateTime?
publishCommentsAndScores Boolean?
showAuthorResultsOnRubricFail Boolean?
rubricCriteria ProposalRubricCriteria[]
rubricAnswers ProposalRubricCriteriaAnswer[]
Expand Down

0 comments on commit d856178

Please sign in to comment.