mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-20 23:32:23 +00:00
44d3ed8f2e
Add the possibility to display a feedback form link in the footer to help collect feedback from the first users of the plugin. Once the plugin is in production at scale, this will be replaced with a link to the support page.
12 lines
399 B
JavaScript
12 lines
399 B
JavaScript
const BASE_URL = window.__APP_CONFIG__?.BASE_URL || "https://meet.127.0.0.1.nip.io";
|
|
const APP_NAME = window.__APP_CONFIG__?.APP_NAME || "LaSuite Meet";
|
|
const ENABLE_SOURCE_TRACKING = window.__APP_CONFIG__?.ENABLE_SOURCE_TRACKING === "true";
|
|
const FEEDBACK_FORM = window.__APP_CONFIG__?.FEEDBACK_FORM || null;
|
|
|
|
module.exports = {
|
|
BASE_URL,
|
|
APP_NAME,
|
|
ENABLE_SOURCE_TRACKING,
|
|
FEEDBACK_FORM
|
|
};
|