summaryrefslogtreecommitdiff
path: root/lib/api/entities/metrics/user_starred_dashboard.rb
blob: 1d2a8a39547af86280b07568cb03dfd02ac50498 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module API
  module Entities
    module Metrics
      class UserStarredDashboard < Grape::Entity
        expose :id, documentation: { type: 'integer', example: 5 }
        expose :dashboard_path, documentation: { type: 'string', example: 'config/prometheus/common_metrics.yml' }
        expose :user_id, documentation: { type: 'integer', example: 1 }
        expose :project_id, documentation: { type: 'integer', example: 20 }
      end
    end
  end
end