You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
648 B

1 year ago
  1. # Message
  2. You bot can handle all types of messages.
  3. ## Private and Group chats
  4. Messages in private and group chats get handled by [`GenericmessageCommand.php`](GenericmessageCommand.php).
  5. When a message gets edited, it gets handled by [`EditedmessageCommand.php`](EditedmessageCommand.php)
  6. (Have a look at [`EditmessageCommand.php`](EditmessageCommand.php) for an example of how to edit messages via your bot)
  7. ## Channels
  8. For channels, the messages (or posts) get handled by [`ChannelpostCommand.php`](ChannelpostCommand.php).
  9. When a channel post gets edited, it gets handled by [`EditedchannelpostCommand.php`](EditedchannelpostCommand.php)