Method: Issue#==

Defined in:
app/models/issue.rb

#==(other) ⇒ Object Also known as: eql?



926
927
928
929
930
# File 'app/models/issue.rb', line 926

def ==(other)
  return super unless id.present?

  other.is_a?(Issue) && other.id == id
end