mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-13 12:17:24 +00:00
4548f69de8
Provide the minimal components required to support an Outlook add-in: user authentication, JWT retrieval, and API calls to generate meeting links. This implementation is an early alpha: developer experience is limited, documentation is incomplete, and the solution is not white-labeled. It's too early to consider these parts ready to ship into production. As a result, it is currently only available within the DINUM frontend image.
16 lines
490 B
JavaScript
16 lines
490 B
JavaScript
const { BASE_URL } = require("./index");
|
|
|
|
const ADDONS_BASE_URL = `${BASE_URL}/api/v1.0/addons/sessions`;
|
|
|
|
const URLS = {
|
|
authenticate: `${BASE_URL}/api/v1.0/authenticate/`,
|
|
successPage: `${BASE_URL}/addons/outlook/success.html`,
|
|
transitDialog: `${BASE_URL}/addons/outlook/transit.html`,
|
|
init: `${ADDONS_BASE_URL}/init/`,
|
|
poll: `${ADDONS_BASE_URL}/poll/`,
|
|
exchange: `${ADDONS_BASE_URL}/exchange/`,
|
|
rooms: `${BASE_URL}/external-api/v1.0/rooms/`,
|
|
};
|
|
|
|
module.exports = { URLS };
|