diff options
| author | 2023-06-26 11:30:24 +0200 | |
|---|---|---|
| committer | 2023-06-26 10:30:24 +0100 | |
| commit | 855e4e55850be6f1bf5168783cd3e1913a616f9b (patch) | |
| tree | 6ce700dd4f8c85b51a28e86c6dc344f5ebaff7e6 | |
| parent | Merge pull request #1006 from n0Oo0Oo0b/n0Oo0Oo0b-patch-1 (diff) | |
Add new rule aliases (#1007)
* Correct indent for GPT rule
* Add new aliases for rule 4 and 8
See suggestion in #1001.
Closes #1001.
Diffstat (limited to '')
| -rw-r--r-- | pydis_site/apps/api/views.py | 8 | 
1 files changed, 4 insertions, 4 deletions
| 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"]              ),          ]) | 
