Files
speckle-server/.zed/debug.json
T
Gergő Jedlicska 6982023dca feat(gatekeeper): add per workspace feature flags (#5303)
* feat(gatekeeper): add per workspace feature flags

* feat(workspaces): add admin api for granting and removing access to
workspace features

* fix(workspaces): use the correct constant name

* fix(workspaces): more test type fixes

* fix(shared): fix tests and types

* fix(workspaces): properly use exhaustive switch statement

* fix(workspaces): add new workspace plan feature to switch

* fix(workspaces): use regular integer, its fine for now...

* fix(workspaces): feature flag retention post checkout

* fix(gatekeeper): fix upsert plan tests
2025-08-26 10:23:02 +01:00

45 lines
1.1 KiB
JSON

[
{
"adapter": "JavaScript",
"label": "yarn (JavaScript)",
"request": "launch",
"console": "integratedTerminal",
"program": "dev",
"runtimeExecutable": "yarn",
"args": [],
"type": "pwa-node",
"cwd": "$ZED_WORKTREE_ROOT/packages/server",
"skipFiles": ["<node_internals>/**"],
"env": {},
"stop_on_entry": false
},
{
"adapter": "JavaScript",
"label": "ZED yarn test (server)",
"request": "launch",
"console": "integratedTerminal",
"program": "test",
"runtimeExecutable": "yarn",
"args": [],
"type": "pwa-node",
"cwd": "$ZED_WORKTREE_ROOT/packages/server",
"skipFiles": ["<node_internals>/**"],
"env": {},
"stop_on_entry": false
},
{
"adapter": "JavaScript",
"label": "ZED yarn test (shared)",
"request": "launch",
"console": "integratedTerminal",
"program": "test",
"runtimeExecutable": "yarn",
"args": [],
"type": "pwa-node",
"cwd": "$ZED_WORKTREE_ROOT/packages/shared",
"skipFiles": ["<node_internals>/**"],
"env": {},
"stop_on_entry": false
}
]