openvidu-meet/openvidu-meet.code-workspace
Carlos Santos b055ef0333 update file exclusion patterns in workspace settings
webcomponent: Added missing and necessary js file

Update .gitignore to specify backend public directory exclusion

webcomponent: Add error handling for invalid base URL in OpenViduMeet component

webcomponent: Update Jest configuration for improved testing setup

webcomponent: Enhance iframe attribute tests and add support for optional query parameters

webcomponent: Refactor documentation copying in build_webcomponent_doc function for improved readability and add absolute path resolution

Add E2EE_KEY property to WebComponentProperty enum for end-to-end encryption support

meet.sh: Enhance build_rest_api_doc function with output file handling and user confirmation for overwriting

frontend: replace removeRoomSecretGuard with removeQueryParamsGuard for enhanced query parameter management

frontend: add E2EE key handling in room service and update query params guard

Updated pnpm-lock.yaml

Enables end-to-end encryption (E2EE)

Adds E2EE functionality to meeting rooms.

Significant changes:
- Allows encryption of the participant name
- Introduces setting and getting E2EE keys
- Ensures recording is disabled when encryption is enabled

webcomponent: Added e2e test for checking the e2ee funcionality

frontend: Sanitize participant name before request for a token

fix: clean up formatting in openvidu-meet.code-workspace
2025-11-10 17:54:33 +01:00

187 lines
4.7 KiB
Plaintext

{
"folders": [
{
"name": "openvidu-components-angular",
"path": "../openvidu/openvidu-components-angular"
},
{
"name": "openvidu-meet (root)",
"path": "."
},
{
"name": "openvidu-meet (CE)",
"path": "meet-ce"
},
{
"name": "openvidu-meet (PRO)",
"path": "meet-pro"
},
{
"name": "shared-meet-components",
"path": "meet-ce/frontend/projects/shared-meet-components"
},
{
"name": "meet-testapp",
"path": "testapp"
},
{
"name": "meet-webcomponent",
"path": "meet-ce/frontend/webcomponent"
}
],
"settings": {
"files.exclude": {
"**/meet-ce": true,
"**/meet-pro": true,
"**/frontend/webcomponent": true,
"**/webhooks-snippets": false,
"**/testapp": true,
"**/.angular": true,
"**/public": false,
"**/dist": false,
"**/node_modules": true,
"**/test-results": true,
},
"jest.disabledWorkspaceFolders": ["openvidu-meet (root)", "openvidu-components-angular", "shared-meet-components", "meet-testapp"],
"mochaExplorer.files": "tests/e2e/**/*.test.ts",
"mochaExplorer.require": ".mocharc.js",
"files.watcherExclude": {
"**/node_modules/**": true,
"**/dist/**": true,
},
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Debug Jest Test (CE Backend)",
"type": "node",
"request": "launch",
"program": "${workspaceFolder:openvidu-meet (root)}/node_modules/.bin/jest",
"args": [
"--config",
"${workspaceFolder:openvidu-meet (CE)}/backend/jest.config.mjs",
"--runInBand",
"--no-cache",
"${file}"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"windows": {
"program": "${workspaceFolder:openvidu-meet (root)}/node_modules/.bin/jest.cmd"
},
"runtimeArgs": [
"--experimental-vm-modules"
],
"env": {
"NODE_ENV": "test"
},
"cwd": "${workspaceFolder:openvidu-meet (CE)}/backend"
},
{
"name": "Debug Jest Test (PRO Backend)",
"type": "node",
"request": "launch",
"program": "${workspaceFolder:openvidu-meet (root)}/node_modules/.bin/jest",
"args": [
"--config",
"${workspaceFolder:openvidu-meet (PRO)}/backend/jest.config.mjs",
"--runInBand",
"--no-cache",
"${file}"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"windows": {
"program": "${workspaceFolder:openvidu-meet (root)}/node_modules/.bin/jest.cmd"
},
"runtimeArgs": [
"--experimental-vm-modules"
],
"env": {
"NODE_ENV": "test"
},
"cwd": "${workspaceFolder:openvidu-meet (PRO)}/backend"
},
{
"name": "Debug Jest Test (Webcomponent)",
"type": "node",
"request": "launch",
"program": "${workspaceFolder:openvidu-meet (root)}/node_modules/.bin/jest",
"args": [
"--config",
"${workspaceFolder:meet-webcomponent}/jest.config.mjs",
"--runInBand",
"--no-cache",
"${file}"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"windows": {
"program": "${workspaceFolder:openvidu-meet (root)}/node_modules/.bin/jest.cmd"
},
"runtimeArgs": [
"--experimental-vm-modules"
],
"env": {
"NODE_ENV": "test"
},
"cwd": "${workspaceFolder:meet-webcomponent}"
},
{
"name": "Debug Current Jest Test (CE Backend)",
"type": "node",
"request": "launch",
"program": "${workspaceFolder:openvidu-meet (root)}/node_modules/.bin/jest",
"args": [
"--config",
"${workspaceFolder:openvidu-meet (CE)}/backend/jest.config.mjs",
"--runInBand",
"--testNamePattern",
"${input:testName}",
"${file}"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"runtimeArgs": [
"--experimental-vm-modules"
],
"env": {
"NODE_ENV": "test"
},
"cwd": "${workspaceFolder:openvidu-meet (CE)}/backend"
},
{
"name": "Debug Current Jest Test (PRO Backend)",
"type": "node",
"request": "launch",
"program": "${workspaceFolder:openvidu-meet (root)}/node_modules/.bin/jest",
"args": [
"--config",
"${workspaceFolder:openvidu-meet (PRO)}/backend/jest.config.mjs",
"--runInBand",
"--testNamePattern",
"${input:testName}",
"${file}"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"runtimeArgs": [
"--experimental-vm-modules"
],
"env": {
"NODE_ENV": "test"
},
"cwd": "${workspaceFolder:openvidu-meet (PRO)}/backend"
}
],
"inputs": [
{
"id": "testName",
"description": "Test name pattern (optional, leave empty to run all tests in file)",
"default": "",
"type": "promptString"
}
]
},
}