website/integrations: ak_groups -> groups (#20579)

This commit is contained in:
Dominic R
2026-02-26 03:59:10 -05:00
committed by GitHub
parent 393a4aa75d
commit c54011bd8a
11 changed files with 12 additions and 12 deletions

View File

@@ -64,7 +64,7 @@ You first need to create property mappings to provide the specific SAML attribut
- **SAML Attribute Name**: `groups`
- **Expression**:
```python
for group in request.user.ak_groups.all():
for group in request.user.groups.all():
yield group.name
```