summaryrefslogtreecommitdiff
path: root/app/controllers/projects/settings/integrations_controller.rb
blob: fba11ff1497c2f919bcde58aef28d3911ea02783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module Projects
  module Settings
    class IntegrationsController < Projects::ApplicationController
      before_action :authorize_admin_project!
      layout "project_settings"

      feature_category :integrations

      def show
        @services = @project.find_or_initialize_services
      end
    end
  end
end