-
Notifications
You must be signed in to change notification settings - Fork 6
feat(PM-2540): added ai workflow id to default reviewer #52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| /* | ||
| Warnings: | ||
|
|
||
| - You are about to drop the column `isAIReviewer` on the `DefaultChallengeReviewer` table. All the data in the column will be lost. | ||
|
|
||
| */ | ||
| -- AlterTable | ||
| ALTER TABLE "DefaultChallengeReviewer" DROP COLUMN "isAIReviewer", | ||
| ADD COLUMN "aiWorkflowId" TEXT, | ||
| ALTER COLUMN "scorecardId" DROP NOT NULL; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -649,7 +649,7 @@ model DefaultChallengeReviewer { | |
| trackId String | ||
| timelineTemplateId String? | ||
| // Reviewer configuration (mirrors ChallengeReviewer) | ||
| scorecardId String | ||
| scorecardId String? | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @kkartunov @jmgasper fyi, I am making scorecardId field nullable as default AI reviewers can be created without a scorecard. |
||
| isMemberReview Boolean | ||
| memberReviewerCount Int? | ||
| phaseName String | ||
|
|
@@ -659,7 +659,7 @@ model DefaultChallengeReviewer { | |
| baseCoefficient Float? | ||
| incrementalCoefficient Float? | ||
| opportunityType ReviewOpportunityTypeEnum? | ||
| isAIReviewer Boolean? | ||
| aiWorkflowId String? | ||
hentrymartin marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| shouldOpenOpportunity Boolean @default(true) | ||
|
|
||
| // Relations | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.