summaryrefslogtreecommitdiff
path: root/app/controllers/projects/settings/operations_controller.rb
blob: 1669e8fff7505b94e712a886f4518eff92473dea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Projects
  module Settings
    class OperationsController < Projects::ApplicationController
      before_action :authorize_update_environment!, only: [:show]

      def show
        @error_tracking_setting = ErrorTracking::ErrorTrackingSetting.for_project(project)
      end
    end
  end
end