lib/3llo/command/card/add.rb in 3llo-1.1.0 vs lib/3llo/command/card/add.rb in 3llo-1.2.0
- old
+ new
@@ -19,10 +19,10 @@
"Choose the list this card should belong to:",
list_options
)
name = interface.input.ask("Name:", required: true)
- description = interface.input.ask("Description:")
+ description = interface.input.multiline("Description:").join("")
API::Card.create(name, description, list_id)
interface.puts("Card has been created.")
else