mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-05 06:33:57 +02:00
Added ability to block bot from moderate box.
This commit is contained in:
parent
69fc2f48bf
commit
0fb383c466
1 changed files with 19 additions and 0 deletions
|
@ -7,6 +7,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
*/
|
*/
|
||||||
#include "boxes/moderate_messages_box.h"
|
#include "boxes/moderate_messages_box.h"
|
||||||
|
|
||||||
|
#include "api/api_blocked_peers.h"
|
||||||
#include "api/api_chat_participants.h"
|
#include "api/api_chat_participants.h"
|
||||||
#include "api/api_messages_search.h"
|
#include "api/api_messages_search.h"
|
||||||
#include "apiwrap.h"
|
#include "apiwrap.h"
|
||||||
|
@ -590,6 +591,20 @@ void DeleteChatBox(not_null<Ui::GenericBox*> box, not_null<PeerData*> peer) {
|
||||||
st::defaultBoxCheckbox));
|
st::defaultBoxCheckbox));
|
||||||
}();
|
}();
|
||||||
|
|
||||||
|
const auto maybeBotCheckbox = [&]() -> Ui::Checkbox* {
|
||||||
|
if (!maybeUser || !maybeUser->isBot()) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
Ui::AddSkip(container);
|
||||||
|
Ui::AddSkip(container);
|
||||||
|
return box->addRow(
|
||||||
|
object_ptr<Ui::Checkbox>(
|
||||||
|
container,
|
||||||
|
tr::lng_profile_block_bot(tr::now, Ui::Text::WithEntities),
|
||||||
|
false,
|
||||||
|
st::defaultBoxCheckbox));
|
||||||
|
}();
|
||||||
|
|
||||||
Ui::AddSkip(container);
|
Ui::AddSkip(container);
|
||||||
|
|
||||||
auto buttonText = maybeUser
|
auto buttonText = maybeUser
|
||||||
|
@ -603,7 +618,11 @@ void DeleteChatBox(not_null<Ui::GenericBox*> box, not_null<PeerData*> peer) {
|
||||||
const auto close = crl::guard(box, [=] { box->closeBox(); });
|
const auto close = crl::guard(box, [=] { box->closeBox(); });
|
||||||
box->addButton(std::move(buttonText), [=] {
|
box->addButton(std::move(buttonText), [=] {
|
||||||
const auto revoke = maybeCheckbox && maybeCheckbox->checked();
|
const auto revoke = maybeCheckbox && maybeCheckbox->checked();
|
||||||
|
const auto stopBot = maybeBotCheckbox && maybeBotCheckbox->checked();
|
||||||
Core::App().closeChatFromWindows(peer);
|
Core::App().closeChatFromWindows(peer);
|
||||||
|
if (stopBot) {
|
||||||
|
peer->session().api().blockedPeers().block(peer);
|
||||||
|
}
|
||||||
// Don't delete old history by default,
|
// Don't delete old history by default,
|
||||||
// because Android app doesn't.
|
// because Android app doesn't.
|
||||||
//
|
//
|
||||||
|
|
Loading…
Add table
Reference in a new issue