debian-mirror-gitlab/app/assets/javascripts/vue_shared/gl_feature_flags_plugin.js
2021-04-17 20:07:23 +05:30

12 lines
299 B
JavaScript

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,
} || {},
},
});
};