class GoodData::LCM2::HelloWorld
Constants
- DESCRIPTION
- PARAMS
Public Class Methods
call(params)
click to toggle source
# File lib/gooddata/lcm/actions/hello_world.rb, line 27 def call(params) say(params.message) msg = { message: params.message } results = [msg] # Return results results end
say(msg)
click to toggle source
# File lib/gooddata/lcm/actions/hello_world.rb, line 23 def say(msg) GoodData.logger.info("#{name}#say - #{msg}") end