From ad325a654eb0d1acf86387c60531aaeebfd8fd4f Mon Sep 17 00:00:00 2001 From: Cy Rossignol Date: Thu, 13 Aug 2026 09:48:42 -0700 Subject: [PATCH] Disable auto-flag changeset review temporarily Disable review auto-flagging as a temporary workaround. This flags every changeset for review. --- api/main.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/api/main.py b/api/main.py index c3708b3..1e2391e 100644 --- a/api/main.py +++ b/api/main.py @@ -316,10 +316,11 @@ async def catch_all( ): workspace = await repository.getById(current_user, workspace_id) - if ( - workspace.autoFlagReview - and current_user.effective_role(workspace_id) == "contributor" - ): + # if ( + # workspace.autoFlagReview + # and current_user.effective_role(workspace_id) == "contributor" + # ): + if True: logger.info("Injecting review request tag") body = await request.body() root = ET.fromstring(body)