bigbluebutton-html-plugin-sdk
Version:
This repository contains the SDK for developing BigBlueButton plugins. Plugins are React components that can be loaded from external sources by the BigBlueButton HTML5 client to extend its functionalities.
14 lines • 552 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getRemoteData = void 0;
var getRemoteData = function (dataSourceName, pluginName) {
var _a;
return fetch("/api/plugin/".concat(pluginName, "/").concat(dataSourceName, "/"), {
credentials: 'include',
headers: {
'x-session-token': (_a = new URLSearchParams(window.location.search).get('sessionToken')) !== null && _a !== void 0 ? _a : '',
},
});
};
exports.getRemoteData = getRemoteData;
//# sourceMappingURL=utils.js.map