Files
gitlab-foss/lib/vs_code/settings.rb
2024-12-05 06:36:21 +00:00

24 lines
541 B
Ruby

# 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
EXTENSIONS = "extensions"
SETTINGS_TYPES = %w[settings extensions globalState machines keybindings snippets tasks profiles].freeze
DEFAULT_SESSION = "1"
NO_CONTENT_ETAG = "0"
end
end