Class: Castle::Commands::Lists::Get

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

Overview

Builds the command to get a list

Class Method Summary collapse

Class Method Details

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

Parameters:

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

Returns:



11
12
13
14
15
# File 'lib/castle/commands/lists/get.rb', line 11

def build(options = {})
  Castle::Validators::Present.call(options, %i[list_id])

  Castle::Command.new("lists/#{options[:list_id]}", nil, :get)
end