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

settings.rb « vs_code « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cc2245eae1c21951a54c44341189ecf245efb17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module VsCode
  module Settings
    DEFAULT_MACHINE = {
      id: 1,
      uuid: "3aa16b0f-652e-4850-8429-a00190dac6aa",
      version: 1,
      setting_type: "machines",
      machines: [
        {
          id: 1,
          name: "GitLab WebIDE",
          platform: "GitLab"
        }
      ]
    }.freeze
    SETTINGS_TYPES = %w[settings extensions globalState machines keybindings snippets tasks profiles].freeze
    DEFAULT_SESSION = "1"
    NO_CONTENT_ETAG = "0"
  end
end