diff options
author | 2019-11-20 09:53:11 +0100 | |
---|---|---|
committer | 2019-11-20 09:53:11 +0100 | |
commit | ea34852e7e136782cd40eceb005e3f5fd2034b5e (patch) | |
tree | ab40a023716cbc082ac6bab6931120c080a50ee0 | |
parent | Add pipenv run start command (#308) (diff) | |
parent | Correct the discord tos link in rules endpoint. (diff) |
Merge pull request #313 from python-discord/fix-discord-tos
Correct the Discord TOS link in rules API endpoint.
-rw-r--r-- | pydis_site/apps/api/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/api/views.py b/pydis_site/apps/api/views.py index f0f7efa9..fd5a6d4d 100644 --- a/pydis_site/apps/api/views.py +++ b/pydis_site/apps/api/views.py @@ -110,7 +110,7 @@ class RulesView(APIView): ) discord_tos = self._format_link( 'Terms Of Service', - 'https://discordapp.com/guidelines', + 'https://discordapp.com/terms', link_format ) pydis_coc = self._format_link( |