mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-19 01:23:09 +00:00
12 lines
181 B
JavaScript
12 lines
181 B
JavaScript
export default (Vue) => {
|
|
Vue.mixin({
|
|
provide() {
|
|
return {
|
|
glLicensedFeatures: {
|
|
...window.gon?.licensed_features,
|
|
},
|
|
};
|
|
},
|
|
});
|
|
};
|