This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2023-10-26 10:31:32 +00:00
|
|
|
- `user`: The current user. This may be `None` if there is no contextual user. See [User](../user-group-role/user/user_ref.md#object-properties).
|
2022-03-15 17:12:02 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```python
|
|
|
|
return {
|
|
|
|
"custom_attribute": request.user.attributes.get("custom_attribute", "default"),
|
|
|
|
}
|
2022-05-09 19:22:41 +00:00
|
|
|
```
|