diff options
| author | 2021-05-16 18:44:44 +0100 | |
|---|---|---|
| committer | 2021-05-16 18:44:44 +0100 | |
| commit | c3c94a5988bbcf5e42d12b7ca4580fbe65bf2652 (patch) | |
| tree | 01ee2e9c58afd5fa2868c39c7fb993596af1ee66 /pydis_site/apps/api | |
| parent | Fixes Typo In Contrib Guide (diff) | |
| parent | Merge pull request #412 from Transfusion/fix_327 (diff) | |
Merge branch 'main' into reword-contrib-guides
Diffstat (limited to 'pydis_site/apps/api')
| -rw-r--r-- | pydis_site/apps/api/views.py | 28 | 
1 files changed, 16 insertions, 12 deletions
| diff --git a/pydis_site/apps/api/views.py b/pydis_site/apps/api/views.py index 0d126051..816463f6 100644 --- a/pydis_site/apps/api/views.py +++ b/pydis_site/apps/api/views.py @@ -121,30 +121,34 @@ class RulesView(APIView):          return Response([              ( -                f"Follow the {discord_community_guidelines} and {discord_tos}." +                f"Follow the {pydis_coc}."              ),              ( -                f"Follow the {pydis_coc}." +                f"Follow the {discord_community_guidelines} and {discord_tos}."              ),              ( -                "Listen to and respect staff members and their instructions." +                "Respect staff members and listen to their instructions."              ),              ( -                "This is an English-speaking server, " -                "so please speak English to the best of your ability." +                "Use English to the best of your ability. " +                "Be polite if someone speaks English imperfectly."              ),              (                  "Do not provide or request help on projects that may break laws, " -                "breach terms of services, be considered malicious or inappropriate. " -                "Do not help with ongoing exams. Do not provide or request solutions " -                "for graded assignments, although general guidance is okay." +                "breach terms of services, or are malicious or inappropriate." +            ), +            ( +                "Do not post unapproved advertising." +            ), +            ( +                "Keep discussions relevant to the channel topic. " +                "Each channel's description tells you the topic."              ),              ( -                "No spamming or unapproved advertising, including requests for paid work. " -                "Open-source projects can be shared with others in #python-general and " -                "code reviews can be asked for in a help channel." +                "Do not help with ongoing exams. When helping with homework, " +                "help people learn how to do the assignment without doing it for them."              ),              ( -                "Keep discussions relevant to channel topics and guidelines." +                "Do not offer or ask for paid work of any kind."              ),          ]) | 
