Files
chatwoot/app/javascript/shared/store/globalConfig.js
2021-01-17 23:59:09 +05:30

42 lines
747 B
JavaScript

const {
APP_VERSION: appVersion,
BRAND_NAME: brandName,
CREATE_NEW_ACCOUNT_FROM_DASHBOARD: createNewAccountFromDashboard,
DISPLAY_MANIFEST: displayManifest,
INSTALLATION_NAME: installationName,
LOGO_THUMBNAIL: logoThumbnail,
LOGO: logo,
PRIVACY_URL: privacyURL,
TERMS_URL: termsURL,
WIDGET_BRAND_URL: widgetBrandURL,
} = window.globalConfig;
const state = {
appVersion,
brandName,
createNewAccountFromDashboard,
displayManifest,
installationName,
logo,
logoThumbnail,
privacyURL,
termsURL,
widgetBrandURL,
};
export const getters = {
get: $state => $state,
};
export const actions = {};
export const mutations = {};
export default {
namespaced: true,
state,
getters,
actions,
mutations,
};