Skip to content

Commit 92a76d2

Browse files
committed
feat: add ai rejection message
1 parent 8dcb100 commit 92a76d2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,13 @@ const rejectionValues: RejectionTemplate[] = [
9696
prettyValue: 'Duplicate',
9797
execute: ({ user }: RejectionParams) => `${user}, your project has been rejected because it is a duplicate. We will review your original in due course. Please do not submit this project again.`,
9898
location: () => 'thread'
99+
},
100+
{
101+
key: 'ai',
102+
enumValue: { name: 'AI generated submission', value: 'ai' },
103+
prettyValue: 'AI generated',
104+
execute: ({ user }: RejectionParams) => `${user}, your project has been rejected because it appears to be significantly generated by AI. We do not accept projects of this nature as per the submission guidelines. If you feel this determination was in error, do get back to us with evidence to the contrary and we'll look it over again.`,
105+
location: () => 'thread'
99106
}
100107
]
101108

0 commit comments

Comments
 (0)