Class: Castle::Commands::Lists::Update

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

Overview

Builds the command to update a list

Class Method Summary collapse

Class Method Details

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

Parameters:

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

Returns:



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

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

  list_id = options.delete(:list_id)

  Castle::Command.new("lists/#{list_id}", options, :put)
end