Class: Castle::Commands::ListItems::Update
- Inherits:
-
Object
- Object
- Castle::Commands::ListItems::Update
- Defined in:
- lib/castle/commands/list_items/update.rb
Overview
Builds the command to update a list item
Class Method Summary collapse
Class Method Details
.build(options = {}) ⇒ Castle::Command
11 12 13 14 15 16 17 |
# File 'lib/castle/commands/list_items/update.rb', line 11 def build( = {}) Castle::Validators::Present.call(, %i[list_id list_item_id comment]) list_id = .delete(:list_id) list_item_id = .delete(:list_item_id) Castle::Command.new("lists/#{list_id}/items/#{list_item_id}", , :put) end |