Welcome to mirror list, hosted at ThFree Co, Russian Federation.

metric_image.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd5e3a62e400d3415d5b3e7a6c02d52ba00e1f10 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module API
  module Entities
    class MetricImage < Grape::Entity
      expose :id, :created_at, :filename, :file_path, :url, :url_text
    end
  end
end