From e6276190adffe30c69665366adec369dc944ab0c Mon Sep 17 00:00:00 2001 From: knottAutodesk <143034967+knottAutodesk@users.noreply.github.com> Date: Sat, 6 Jan 2024 16:43:51 -0800 Subject: [PATCH] Update authorizing-parameters-steps-and-actions.md debug:log is causing markdown rendering issues - it should be enclosed in back-ticks. Signed-off-by: knottAutodesk <143034967+knottAutodesk@users.noreply.github.com> --- .../authorizing-parameters-steps-and-actions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/features/software-templates/authorizing-parameters-steps-and-actions.md b/docs/features/software-templates/authorizing-parameters-steps-and-actions.md index 1351676c37..27e8d48023 100644 --- a/docs/features/software-templates/authorizing-parameters-steps-and-actions.md +++ b/docs/features/software-templates/authorizing-parameters-steps-and-actions.md @@ -128,10 +128,10 @@ class ExamplePermissionPolicy implements PermissionPolicy { } ``` -With this permission policy, the user `spiderman` won't be able to execute the debug:log action. +With this permission policy, the user `spiderman` won't be able to execute the `debug:log` action. You can also restrict the input provided to the action by combining multiple rules. -In the example below, `spiderman` won't be able to execute debug:log when passing `{ "message": "not-this!" }` as action input: +In the example below, `spiderman` won't be able to execute `debug:log` when passing `{ "message": "not-this!" }` as action input: ```ts title="packages/backend/src/plugins/permission.ts" /* highlight-add-start */