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

integrations_controller.rb « settings « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1ff08cce8cba675a6e8603aa836060f74c75a377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module Projects
  module Settings
    class IntegrationsController < Projects::ApplicationController
      include ServiceParams

      before_action :authorize_admin_project!
      layout "project_settings"

      def show
        @hooks = @project.hooks
        @hook = ProjectHook.new

        # Services
        @services = @project.find_or_initialize_services
      end
    end
  end
end