diff options
author | 2022-11-02 18:57:22 +0000 | |
---|---|---|
committer | 2022-11-02 18:57:22 +0000 | |
commit | 798c499c3c7673612a6815c0ab77d95be066d7ce (patch) | |
tree | cff7a1df6b2d29fb4fb64a013340bd758e35a97b /pydis_site/apps/api/models | |
parent | Add tests for metricity activity endpoint (diff) |
Change the endpoint to be a POST not a GET
Diffstat (limited to 'pydis_site/apps/api/models')
-rw-r--r-- | pydis_site/apps/api/models/bot/metricity.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/api/models/bot/metricity.py b/pydis_site/apps/api/models/bot/metricity.py index 73bc1f0c..f53dd33c 100644 --- a/pydis_site/apps/api/models/bot/metricity.py +++ b/pydis_site/apps/api/models/bot/metricity.py @@ -135,7 +135,7 @@ class Metricity: self, user_ids: list[str], days: int - ) -> list[tuple[int, int]]: + ) -> list[tuple[str, int]]: """ Query activity by a list of users in the past `days` days. |