Class: Jira::Command::Log::Update
- Defined in:
- lib/jira/commands/log/update.rb
Instance Attribute Summary collapse
-
#ticket ⇒ Object
Returns the value of attribute ticket.
Instance Method Summary collapse
-
#initialize(ticket = Jira::Core.ticket) ⇒ Update
constructor
A new instance of Update.
- #run ⇒ Object
Constructor Details
#initialize(ticket = Jira::Core.ticket) ⇒ Update
Returns a new instance of Update.
17 18 19 |
# File 'lib/jira/commands/log/update.rb', line 17 def initialize(ticket=Jira::Core.ticket) self.ticket = ticket end |
Instance Attribute Details
#ticket ⇒ Object
Returns the value of attribute ticket.
15 16 17 |
# File 'lib/jira/commands/log/update.rb', line 15 def ticket @ticket end |
Instance Method Details
#run ⇒ Object
21 22 23 24 25 26 27 |
# File 'lib/jira/commands/log/update.rb', line 21 def run return unless logs? api.patch endpoint, params: params, success: on_success, failure: on_failure end |