Method: Discordrb::Message#buttons
- Defined in:
- lib/discordrb/data/message.rb
#buttons ⇒ Array<Components::Button>
393 394 395 396 397 398 399 400 401 402 403 404 |
# File 'lib/discordrb/data/message.rb', line 393 def results = @components.collect do |component| case component when Components::Button component when Components::ActionRow component. end end results.flatten.compact end |