28 lines
607 B
Ruby
28 lines
607 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Atlassian
|
|
module JiraConnect
|
|
module Serializers
|
|
class BaseEntity < Grape::Entity
|
|
include Gitlab::Routing
|
|
include GitlabRoutingHelper
|
|
|
|
format_with(:string) { |value| value.to_s }
|
|
|
|
expose :update_sequence_id, as: :updateSequenceId
|
|
|
|
def eql(other)
|
|
other.is_a?(self.class) && to_json == other.to_json
|
|
end
|
|
|
|
alias_method :==, :eql
|
|
|
|
private
|
|
|
|
def update_sequence_id
|
|
options[:update_sequence_id] || Client.generate_update_sequence_id
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|