From 855e4e55850be6f1bf5168783cd3e1913a616f9b Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Mon, 26 Jun 2023 11:30:24 +0200 Subject: Add new rule aliases (#1007) * Correct indent for GPT rule * Add new aliases for rule 4 and 8 See suggestion in #1001. Closes #1001. --- pydis_site/apps/api/views.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pydis_site/apps/api/views.py') diff --git a/pydis_site/apps/api/views.py b/pydis_site/apps/api/views.py index 32f41667..f155aa0b 100644 --- a/pydis_site/apps/api/views.py +++ b/pydis_site/apps/api/views.py @@ -146,7 +146,7 @@ class RulesView(APIView): ( "Use English to the best of your ability. " "Be polite if someone speaks English imperfectly.", - ["english", "language"] + ["english", "eng", "language"] ), ( "Do not provide or request help on projects that may violate terms of service, " @@ -165,15 +165,15 @@ class RulesView(APIView): ( "Do not help with ongoing exams. When helping with homework, " "help people learn how to do the assignment without doing it for them.", - ["exam", "exams", "assignment", "assignments", "homework"] + ["exam", "exams", "assignment", "assignments", "homework", "hw"] ), ( "Do not offer or ask for paid work of any kind.", ["paid", "work", "money"] ), ( - "Do not copy and paste answers from ChatGPT or similar AI tools.", - ["gpt", "chatgpt", "gpt3", "ai"] + "Do not copy and paste answers from ChatGPT or similar AI tools.", + ["gpt", "chatgpt", "gpt3", "ai"] ), ]) -- cgit v1.2.3