Skip to content

Commit

Permalink
Update rules viewset
Browse files Browse the repository at this point in the history
This is to reflect the recent changes made to the server rules.
  • Loading branch information
ChrisLovering committed May 15, 2021
1 parent 20aa50e commit 9b319e1
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions pydis_site/apps/api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,30 +121,34 @@ def get(self, request, format=None): # noqa: D102,ANN001,ANN201

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."
),
])

0 comments on commit 9b319e1

Please sign in to comment.