diff --git a/src/config.ts b/src/config.ts index aea3380..3565058 100644 --- a/src/config.ts +++ b/src/config.ts @@ -96,6 +96,13 @@ const rejectionValues: RejectionTemplate[] = [ prettyValue: 'Duplicate', 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.`, location: () => 'thread' + }, + { + key: 'ai', + enumValue: { name: 'AI generated submission', value: 'ai' }, + prettyValue: 'AI generated', + 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.`, + location: () => 'thread' } ]