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

gl_feature_flags_mixin.js « mixins « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc8a63f26ac1944b756584bde8872aaf31aebf70 (plain)
1
2
3
4
5
6
7
8
export default () => ({
  inject: {
    glFeatures: {
      from: 'glFeatures',
      default: () => ({}),
    },
  },
});