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

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

module API
  module Entities
    module ErrorTracking
      class ProjectSetting < Grape::Entity
        expose :enabled, as: :active
        expose :project_name
        expose :sentry_external_url
        expose :api_url
        expose :integrated
      end
    end
  end
end