From 1bc4420db50281265806e585a94f9a4df0dda744 Mon Sep 17 00:00:00 2001 From: adarshquilr Date: Thu, 23 Apr 2026 16:11:23 +0530 Subject: [PATCH 1/2] bugfix: update key --- .../agent-kill-switch/instructions.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/docs/sop/browser-extension/agent-kill-switch/instructions.md b/docs/sop/browser-extension/agent-kill-switch/instructions.md index e873ba2..5f3d8e3 100644 --- a/docs/sop/browser-extension/agent-kill-switch/instructions.md +++ b/docs/sop/browser-extension/agent-kill-switch/instructions.md @@ -12,13 +12,14 @@ Raise a PR to main Contact Kashi or Thiru for PR approval and merge. +Note: We can find tenant ID in browser extension API calls. ## Step 1 – Create a branch from main Pull the latest main, then create a new branch named like: ``` -feat/add-enable-extension-management +feat/disable-agent-kill-switch ``` ## Step 2 – Add your constant @@ -29,7 +30,7 @@ If the constant is for all tenants, add it to `default.json`. ```json { - "ENABLE_EXTENSION_MANAGEMENT": true + "disable_agent": true } ``` @@ -41,7 +42,7 @@ Example: `442e052d-4c60-4cdc-961e-bc9db74a40ca.json` ```json { - "ENABLE_EXTENSION_MANAGEMENT": true + "disable_agent": true } ``` @@ -57,8 +58,8 @@ Stage only the files under `constants` that you changed. Example commit messages: ``` -feat: add ENABLE_EXTENSION_MANAGEMENT constant globally -feat: override ENABLE_EXTENSION_MANAGEMENT for tenant 442e052d +feat: add disable_agent constant globally +feat: override disable_agent for tenant 442e052d ``` Push your branch. @@ -67,8 +68,6 @@ Push your branch. Create a Pull Request to main. In the PR description include: -- What `ENABLE_EXTENSION_MANAGEMENT` does +- What `disable_agent` does - Whether it's global or tenant-specific - Tenant UUID (if applicable) - -We can find tenant ID in browser extension API calls. From f5c40f1975c7f19fb64ac40706e209344054784d Mon Sep 17 00:00:00 2001 From: adarshquilr Date: Thu, 23 Apr 2026 17:30:10 +0530 Subject: [PATCH 2/2] use preprod --- .../agent-kill-switch/instructions.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/sop/browser-extension/agent-kill-switch/instructions.md b/docs/sop/browser-extension/agent-kill-switch/instructions.md index 5f3d8e3..7dd5b12 100644 --- a/docs/sop/browser-extension/agent-kill-switch/instructions.md +++ b/docs/sop/browser-extension/agent-kill-switch/instructions.md @@ -8,15 +8,18 @@ Go to https://github.com/quilrbusiness/ConstantsConfigsSync Make changes in the tenant specific json file in `constants/defaults/abc-...json` -Raise a PR to main +Raise a PR to quilr-preprod, get approval and merged then quilr-preprod to main Contact Kashi or Thiru for PR approval and merge. Note: We can find tenant ID in browser extension API calls. -## Step 1 – Create a branch from main -Pull the latest main, then create a new branch named like: +Details: + +## Step 1 – Create a branch from quilr-preprod + +Pull the latest quilr-preprod, then create a new branch named like: ``` feat/disable-agent-kill-switch @@ -66,7 +69,7 @@ Push your branch. ## Step 4 – Raise a PR -Create a Pull Request to main. In the PR description include: +Create a Pull Request to quilr-preprod and then to main. In the PR description include: - What `disable_agent` does - Whether it's global or tenant-specific