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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/vs_code/settings.rb')
-rw-r--r--lib/vs_code/settings.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/vs_code/settings.rb b/lib/vs_code/settings.rb
new file mode 100644
index 00000000000..30b91ebb16f
--- /dev/null
+++ b/lib/vs_code/settings.rb
@@ -0,0 +1,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].freeze
+ DEFAULT_SESSION = "1"
+ NO_CONTENT_ETAG = "0"
+ end
+end