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

module API
  module Entities
    module Metrics
      class UserStarredDashboard < Grape::Entity
        expose :id, :dashboard_path, :user_id, :project_id
      end
    end
  end
end