Method: BotFramework::Session#send_localized

Defined in:
lib/bot_framework/session.rb

#send_localized(_localization_namspace, message, _args = []) ⇒ Object



130
131
132
133
134
135
136
137
# File 'lib/bot_framework/session.rb', line 130

def send_localized(_localization_namspace, message, _args = [])
  # TODO: Incomplete
  @msg_sent = true
  m = { text: message }
  prepare_message(m)
  @batch << m
  self
end