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

gl_feature_flags_plugin.js « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1734809bce3ddaea13c021fa4d394dab2527c4e (plain)
1
2
3
4
5
6
7
export default (Vue) => {
  Vue.mixin({
    provide: {
      glFeatures: { ...((window.gon && window.gon.features) || {}) },
    },
  });
};