mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-05 06:44:51 +00:00
Merge pull request #274 from kalmengr/patch-1
Add bound methods block and unblock to User object
This commit is contained in:
commit
eff2285f00
1 changed files with 48 additions and 0 deletions
|
|
@ -214,3 +214,51 @@ class User(Object):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
return self._client.unarchive_chats(self.id)
|
return self._client.unarchive_chats(self.id)
|
||||||
|
|
||||||
|
def block(self):
|
||||||
|
"""Bound method *block* of :obj:`User`.
|
||||||
|
|
||||||
|
Use as a shortcut for:
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
client.block_user(123456789)
|
||||||
|
|
||||||
|
Example:
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
user.block()
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
True on success.
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
RPCError: In case of a Telegram RPC error.
|
||||||
|
"""
|
||||||
|
|
||||||
|
return self._client.block_user(self.id)
|
||||||
|
|
||||||
|
|
||||||
|
def unblock(self):
|
||||||
|
"""Bound method *unblock* of :obj:`User`.
|
||||||
|
|
||||||
|
Use as a shortcut for:
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
client.unblock_user(123456789)
|
||||||
|
|
||||||
|
Example:
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
user.unblock()
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
True on success.
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
RPCError: In case of a Telegram RPC error.
|
||||||
|
"""
|
||||||
|
|
||||||
|
return self._client.unblock_user(self.id)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue