Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions api/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,10 +318,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)
Expand Down
Loading