summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/admin/application_settings/general/index.js
blob: f7bd32880ffd9cad78da00bc377bf1d1080df2a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// This is a true violation of @gitlab/no-runtime-template-compiler, as it
// relies on app/views/admin/application_settings/_gitpod.html.haml for its
// template.
/* eslint-disable @gitlab/no-runtime-template-compiler */
import Vue from 'vue';
import IntegrationHelpText from '~/vue_shared/components/integrations_help_text.vue';
import initUserInternalRegexPlaceholder from '../account_and_limits';

document.addEventListener('DOMContentLoaded', () => {
  initUserInternalRegexPlaceholder();

  const gitpodSettingEl = document.querySelector('#js-gitpod-settings-help-text');
  if (!gitpodSettingEl) {
    return;
  }

  // eslint-disable-next-line no-new
  new Vue({
    el: gitpodSettingEl,
    name: 'GitpodSettings',
    components: {
      IntegrationHelpText,
    },
  });
});