Class: Castle::Commands::Track

Inherits:
Object
  • Object
show all
Defined in:
lib/castle/commands/track.rb

Class Method Summary collapse

Class Method Details

.build(options = {}) ⇒ Castle::Command

Parameters:

  • options (Hash) (defaults to: {})

Returns:



9
10
11
12
13
14
15
16
17
18
# File 'lib/castle/commands/track.rb', line 9

def build(options = {})
  Castle::Validators::Present.call(options, i[event])
  context = Castle::Context::Sanitize.call(options[:context])

  Castle::Command.new(
    'track',
    options.merge(context: context, sent_at: Castle::Utils::GetTimestamp.call),
    :post
  )
end