Class: Dude::Commands::Move

Inherits:
Dry::CLI::Command
  • Object
show all
Defined in:
lib/dude/commands/move.rb

Instance Method Summary collapse

Instance Method Details

#call(id:, **options) ⇒ Object



11
12
13
14
# File 'lib/dude/commands/move.rb', line 11

def call(id:, **options)
  client = ProjectManagement::Client.new
  client.move_task_to_list(id, options[:list])
end