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

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

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