Module: Discorb::Interaction::ModalResponder
- Included in:
- CommandInteraction, MessageComponentInteraction
- Defined in:
- lib/discorb/interaction/response.rb
Overview
A module for response with modal.
Instance Method Summary collapse
-
#show_modal(title, custom_id, components) -> Async::Task<void>
Response with
MODAL
(9
).
Instance Method Details
#show_modal(title, custom_id, components) -> Async::Task<void>
Response with MODAL
(9
).
255 256 257 258 259 260 261 |
# File 'lib/discorb/interaction/response.rb', line 255 def show_modal(title, custom_id, components) payload = { title: title, custom_id: custom_id, components: Component.to_payload(components) } @client.http.request( Route.new("/interactions/#{@id}/#{@token}/callback", "//interactions/:interaction_id/:token/callback", :post), { type: 9, data: payload } ).wait end |