12ee2753c1
Enables frozen string for some vestigial files as well as the following: * app/controllers/projects/**/*.rb * app/controllers/sherlock/**/*.rb * app/controllers/snippets/**/*.rb * app/controllers/users/**/*.rb Partially addresses #47424.
27 lines
621 B
Ruby
27 lines
621 B
Ruby
# frozen_string_literal: true
|
|
|
|
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(exceptions: service_exceptions)
|
|
end
|
|
|
|
private
|
|
|
|
# Returns a list of services that should be hidden from the list
|
|
def service_exceptions
|
|
@project.disabled_services.dup
|
|
end
|
|
end
|
|
end
|
|
end
|