debian-mirror-gitlab/lib/api/entities/metric_image.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
186 B
Ruby
Raw Normal View History

2022-06-21 17:19:12 +05:30
# 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