2020-12-07 04:09:42 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class CodequalityDegradationEntity < Grape::Entity
|
|
|
|
expose :description
|
2022-01-28 01:12:18 -05:00
|
|
|
expose :severity do |degradation|
|
|
|
|
degradation.dig(:severity)&.downcase
|
|
|
|
end
|
2020-12-07 04:09:42 -05:00
|
|
|
|
|
|
|
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
|