Class: Castle::Commands::Risk

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

Overview

Generates the payload for the risk request

Class Method Summary collapse

Class Method Details

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

Parameters:

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

Returns:



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

def build(options = {})
  context = Castle::Context::Sanitize.call(options[:context])

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