summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/gl_feature_flags_plugin.js
blob: c12ffaac40aea5810c1e623580df1576ce006f0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export default (Vue) => {
  Vue.mixin({
    provide: {
      glFeatures:
        {
          ...window.gon?.features,
          // TODO: extract into glLicensedFeatures https://gitlab.com/gitlab-org/gitlab/-/issues/322460
          ...window.gon?.licensed_features,
        } || {},
    },
  });
};