From c31622f2c6e9a3a2d0181a4982d13d38e58ab1c3 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Tue, 21 Nov 2023 21:23:40 +0100 Subject: [PATCH] Regen docs --- README.md | 1 + docs | 2 +- src/Namespace/Blacklist.php | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7ec27b63a..48d868b50 100644 --- a/README.md +++ b/README.md @@ -436,6 +436,7 @@ Want to add your own open-source project to this list? [Click here!](https://doc * Enable/disable message signatures in channels: channels.toggleSignatures * Enable/disable top peers: contacts.toggleTopPeers * Escape string for URL: markdownUrlEscape + * Escape string for markdown code section: markdownCodeEscape * Escape string for markdown codeblock: markdownCodeblockEscape * Escape string for markdown: markdownEscape * Executes a custom broadcast action with all peers (users, chats, channels) of the bot: broadcastCustom diff --git a/docs b/docs index 8e5b00149..b1968e08e 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 8e5b001495ee886ff2a9f7b252ac7d41f1b013cb +Subproject commit b1968e08ee33430f535100e7dd9c1e1f8bc9a2bb diff --git a/src/Namespace/Blacklist.php b/src/Namespace/Blacklist.php index 1c8cc6670..2ad33171f 100644 --- a/src/Namespace/Blacklist.php +++ b/src/Namespace/Blacklist.php @@ -9,7 +9,7 @@ final class Blacklist 'account.getPasswordSettings' => 'You cannot use this method directly; use $MadelineProto->update2fa($params), instead (see https://docs.madelineproto.xyz for more info)', 'messages.receivedQueue' => 'You cannot use this method directly', 'messages.getDhConfig' => 'You cannot use this method directly, instead use $MadelineProto->getDhConfig();', - 'auth.bindTempAuthKey' => 'You cannot use this method directly, instead modify the PFS settings, see https://docs.madelineproto.xyz/docs/SETTINGS.html for more info', + 'auth.bindTempAuthKey' => 'You cannot use this method directly, instead modify the PFS and default_temp_auth_key_expires_in settings, see https://docs.madelineproto.xyz/docs/SETTINGS.html for more info', 'auth.exportAuthorization' => 'You cannot use this method directly, use $MadelineProto->exportAuthorization() instead, see https://docs.madelineproto.xyz/docs/LOGIN.html', 'auth.importAuthorization' => 'You cannot use this method directly, use $MadelineProto->importAuthorization($authorization) instead, see https://docs.madelineproto.xyz/docs/LOGIN.html', 'auth.logOut' => 'You cannot use this method directly, use the logout method instead (see https://docs.madelineproto.xyz for more info)',