2021-02-22 17:27:13 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class CodequalityDegradationEntity < Grape::Entity
|
|
|
|
expose :description
|
2022-04-04 11:22:00 +05:30
|
|
|
expose :severity do |degradation|
|
|
|
|
degradation.dig(:severity)&.downcase
|
|
|
|
end
|
2021-02-22 17:27:13 +05:30
|
|
|
|
|
|
|
expose :file_path do |degradation|
|
|
|
|
degradation.dig(:location, :path)
|
|
|
|
end
|
|
|
|
|
|
|
|
expose :line do |degradation|
|
|
|
|
degradation.dig(:location, :lines, :begin) || degradation.dig(:location, :positions, :begin, :line)
|
|
|
|
end
|
|
|
|
end
|