From 92a76d20f3a36af861e97a9c488993d3ec45a3f1 Mon Sep 17 00:00:00 2001 From: nullishamy Date: Sun, 4 May 2025 22:05:51 +0100 Subject: [PATCH] feat: add ai rejection message --- src/config.ts | 7 +++++++ 1 file changed, 7 insertions(+) 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' } ]