mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
Pyrofork: Add update_personal_chat method
Signed-off-by: wulan17 <wulan17@nusantararom.org>
This commit is contained in:
parent
8ca9045ebc
commit
fa0376c458
3 changed files with 54 additions and 0 deletions
|
|
@ -278,6 +278,7 @@ def pyrogram_api():
|
||||||
delete_profile_photos
|
delete_profile_photos
|
||||||
set_username
|
set_username
|
||||||
update_birthday
|
update_birthday
|
||||||
|
update_personal_chat
|
||||||
update_profile
|
update_profile
|
||||||
block_user
|
block_user
|
||||||
unblock_user
|
unblock_user
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,7 @@ from .set_profile_photo import SetProfilePhoto
|
||||||
from .set_username import SetUsername
|
from .set_username import SetUsername
|
||||||
from .unblock_user import UnblockUser
|
from .unblock_user import UnblockUser
|
||||||
from .update_birthday import UpdateBirthday
|
from .update_birthday import UpdateBirthday
|
||||||
|
from .update_personal_chat import UpdatePersonalChat
|
||||||
from .update_profile import UpdateProfile
|
from .update_profile import UpdateProfile
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -62,6 +63,7 @@ class Users(
|
||||||
GetChatPhotosCount,
|
GetChatPhotosCount,
|
||||||
UnblockUser,
|
UnblockUser,
|
||||||
UpdateBirthday,
|
UpdateBirthday,
|
||||||
|
UpdatePersonalChat,
|
||||||
UpdateProfile,
|
UpdateProfile,
|
||||||
GetDefaultEmojiStatuses,
|
GetDefaultEmojiStatuses,
|
||||||
SetEmojiStatus,
|
SetEmojiStatus,
|
||||||
|
|
|
||||||
51
pyrogram/methods/users/update_personal_chat.py
Normal file
51
pyrogram/methods/users/update_personal_chat.py
Normal file
|
|
@ -0,0 +1,51 @@
|
||||||
|
# Pyrofork - Telegram MTProto API Client Library for Python
|
||||||
|
# Copyright (C) 2022-present Mayuri-Chan <https://github.com/Mayuri-Chan>
|
||||||
|
#
|
||||||
|
# This file is part of Pyrofork.
|
||||||
|
#
|
||||||
|
# Pyrofork is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Lesser General Public License as published
|
||||||
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# Pyrofork is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU Lesser General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
|
# along with Pyrofork. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import pyrogram
|
||||||
|
from pyrogram import raw
|
||||||
|
|
||||||
|
from typing import Union
|
||||||
|
|
||||||
|
class UpdatePersonalChat:
|
||||||
|
async def update_personal_chat(
|
||||||
|
self: "pyrogram.Client",
|
||||||
|
chat_id: Union[int, str]
|
||||||
|
) -> bool:
|
||||||
|
"""Update your birthday details.
|
||||||
|
|
||||||
|
.. include:: /_includes/usable-by/users.rst
|
||||||
|
|
||||||
|
Parameters:
|
||||||
|
chat_id (``int``):
|
||||||
|
Unique identifier (int) of the target channel.
|
||||||
|
You can also use channel public link in form of *t.me/<username>* (str).
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
``bool``: True on success.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
# Update your personal chat
|
||||||
|
await app.update_personal_chat(chat_id=-1001234567890)
|
||||||
|
"""
|
||||||
|
chat = await self.resolve_peer(chat_id)
|
||||||
|
r = await self.invoke(raw.functions.account.UpdatePersonalChannel(channel=chat))
|
||||||
|
if r:
|
||||||
|
return True
|
||||||
|
return False
|
||||||
Loading…
Reference in a new issue