debian-mirror-gitlab/app/assets/javascripts/vue_shared/gl_feature_flags_plugin.js

13 lines
299 B
JavaScript
Raw Normal View History

2021-03-08 18:12:59 +05:30
export default (Vue) => {
2019-12-21 20:55:43 +05:30
Vue.mixin({
provide: {
2021-04-17 20:07:23 +05:30
glFeatures:
{
...window.gon?.features,
// TODO: extract into glLicensedFeatures https://gitlab.com/gitlab-org/gitlab/-/issues/322460
...window.gon?.licensed_features,
} || {},
2019-12-21 20:55:43 +05:30
},
});
};