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

terminal_config_service.rb « ide « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 318df3436c43b6ce1b2727bbd7f844838b2a3e85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Ide
  class TerminalConfigService < ::Ide::BaseConfigService
    private

    def success(pass_back = {})
      result = super(pass_back)
      result[:terminal] = config.terminal_value
      result
    end
  end
end