From eb02c9628146a6e6fafe5ddc7d9306bfd3f99750 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sat, 28 Aug 2021 12:50:42 +0200 Subject: [PATCH] website/docs: make it clearer to use context[] Signed-off-by: Jens Langhammer --- website/docs/policies/expression.mdx | 14 +++++++------- website/static/flows/login-2fa.akflow | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/website/docs/policies/expression.mdx b/website/docs/policies/expression.mdx index d48178037..ef57db660 100644 --- a/website/docs/policies/expression.mdx +++ b/website/docs/policies/expression.mdx @@ -56,19 +56,19 @@ Additionally, when the policy is executed from a flow, every variable from the f This includes the following: -- `prompt_data`: Data which has been saved from a prompt stage or an external source. -- `application`: The application the user is in the process of authorizing. -- `pending_user`: The currently pending user, see [User](/docs/expressions/reference/user-object) -- `auth_method`: Authentication method set (this value is set by password stages) +- `context['prompt_data']`: Data which has been saved from a prompt stage or an external source. +- `context['application']`: The application the user is in the process of authorizing. +- `context['pending_user']`: The currently pending user, see [User](/docs/expressions/reference/user-object) +- `context['auth_method']`: Authentication method set (this value is set by password stages) - Depending on method, `auth_method_args` is also set. + Depending on method, `context['auth_method_args']` is also set. Can be any of: - `password`: Standard password login - `app_password`: App passowrd (token) - Sets `auth_method_args` to + Sets `context['auth_method_args']` to ```json { "token": { @@ -81,7 +81,7 @@ This includes the following: ``` - `ldap`: LDAP bind authentication - Sets `auth_method_args` to + Sets `context['auth_method_args']` to ```json { "source": {} // Information about the source used diff --git a/website/static/flows/login-2fa.akflow b/website/static/flows/login-2fa.akflow index acd2d96f2..9f4689f0b 100644 --- a/website/static/flows/login-2fa.akflow +++ b/website/static/flows/login-2fa.akflow @@ -22,7 +22,7 @@ "name": "test-not-app-password", "execution_logging": false, "bound_to": 1, - "expression": "return auth_method != \"app_password\"" + "expression": "return context[\"auth_method\"] != \"app_password\"" } }, {