mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
* Reorganize policy documentation * website/docs: address policy docs review feedback * post-rebase * website/docs: Reorganize policy documentation -- Revisions (#21601) * apply suggestions --------- Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com>
25 lines
827 B
Plaintext
25 lines
827 B
Plaintext
---
|
|
title: Expressions
|
|
---
|
|
|
|
The property mapping should return a value that is expected by the provider. Supported types are documented in the individual provider. Returning `None` is always accepted and would simply skip the mapping for which `None` was returned.
|
|
|
|
## Available Functions
|
|
|
|
import Functions from "../../../expressions/reference/_functions.mdx";
|
|
|
|
<Functions />
|
|
|
|
## Variables
|
|
|
|
import Objects from "../../../expressions/reference/_objects.md";
|
|
|
|
<Objects />
|
|
|
|
import User from "../../../expressions/reference/_user.md";
|
|
|
|
<User />
|
|
|
|
- `request`: The current request. This may be `None` if there is no contextual request. See ([Django documentation](https://docs.djangoproject.com/en/3.0/ref/request-response/#httprequest-objects))
|
|
- Other arbitrary arguments given by the provider, this is documented on the provider.
|