aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2021-03-28 09:22:13 +0300
committerGravatar ks129 <[email protected]>2021-03-28 09:22:13 +0300
commitf144bace9243659887cbb125ea915f809736fc97 (patch)
treeefdcbefc12b84aca3f878195876e949cfbf4559a
parentUse more accurate command names and docstring for talent pool commands (diff)
Migrate nominations history command to non-watchchannel system
-rw-r--r--bot/exts/recruitment/talentpool/_cog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/recruitment/talentpool/_cog.py b/bot/exts/recruitment/talentpool/_cog.py
index 40fb90f11..ee5dc5dae 100644
--- a/bot/exts/recruitment/talentpool/_cog.py
+++ b/bot/exts/recruitment/talentpool/_cog.py
@@ -210,7 +210,7 @@ class TalentPool(Cog, name="Talentpool"):
async def history_command(self, ctx: Context, user: FetchedMember) -> None:
"""Shows the specified user's nomination history."""
result = await self.bot.api_client.get(
- self.api_endpoint,
+ 'bot/nominations',
params={
'user__id': str(user.id),
'ordering': "-active,-inserted_at"