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

annotation.rb « dashboard « metrics « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66bd09d84f918cf7f15b15064138d81f2e2e2b9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module API
  module Entities
    module Metrics
      module Dashboard
        class Annotation < Grape::Entity
          expose :id
          expose :starting_at
          expose :ending_at
          expose :dashboard_path
          expose :description
          expose :environment_id
          expose :cluster_id
        end
      end
    end
  end
end