diff --git a/mipac/actions/admins/admin.py b/mipac/actions/admins/admin.py index b81687f0..77de122c 100644 --- a/mipac/actions/admins/admin.py +++ b/mipac/actions/admins/admin.py @@ -103,26 +103,6 @@ async def unsuspend_user(self, user_id: str) -> bool: ) ) - async def unsilence_user(self, user_id: str) -> bool: - """Unsilence user with specified Id - - Parameters - ---------- - user_id : str - Id of user to unsilence - - Returns - ------- - bool - success or failed - """ - - return bool( - await self.__session.request( - Route("POST", "/api/admin/unsilence-user"), json={"userId": user_id}, auth=True - ) - ) - async def suspend_user(self, user_id: str) -> bool: """ Suspends the user for the specified Id @@ -144,25 +124,6 @@ async def suspend_user(self, user_id: str) -> bool: ) ) - async def silence_user(self, user_id: str) -> bool: - """Silences the user of the specified Id - - Parameters - ---------- - user_id : str - Id of user to silence - - Returns - ------- - bool - success or failed - """ - return bool( - await self.__session.request( - Route("POST", "/api/admin/silence-user"), json={"userId": user_id}, auth=True - ) - ) - async def get_moderation_logs( self, limit: int = 10,