mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-03 16:04:30 +00:00
24 lines
637 B
Ruby
24 lines
637 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class SlacksController < Admin::ApplicationController
|
|
include ::Integrations::SlackControllerSettings
|
|
|
|
private
|
|
|
|
def integration
|
|
@integration ||= Integrations::GitlabSlackApplication.for_instance.first
|
|
end
|
|
|
|
def redirect_to_integration_page
|
|
redirect_to edit_admin_application_settings_integration_path(
|
|
integration || Integrations::GitlabSlackApplication.for_instance.new
|
|
)
|
|
end
|
|
|
|
def installation_service
|
|
Integrations::SlackInstallation::InstanceService.new(current_user: current_user, params: params.permit(:code))
|
|
end
|
|
end
|
|
end
|