mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
24 lines
541 B
Ruby
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
|