Method: Discordrb::Message#buttons
- Defined in:
- lib/discordrb/data/message.rb
#buttons ⇒ Array<Components::Button>
511 512 513 514 515 516 517 518 519 520 521 522 |
# File 'lib/discordrb/data/message.rb', line 511 def results = @components.collect do |component| case component when Components::Button component when Components::ActionRow component. end end results.flatten.compact end |