website/integrations: Update nextcloud Admin Group Expression (#7314)

* Update index.md

Replace user.ak_groups.all() with user.all_groups per 2023.8 release notes in Admin Group

Update Expression in Admin group to only pass groups that start with 'NC-' to NextCloud.  Add verbiage around naming for admin group.

Signed-off-by: Sean Dion <smdion@gmail.com>

* don't use NC prefix

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

---------

Signed-off-by: Sean Dion <smdion@gmail.com>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Co-authored-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Sean Dion
2024-03-25 07:07:54 -05:00
committed by GitHub
parent d7e399dbf9
commit 285dc8cff0

View File

@ -286,7 +286,7 @@ Create a custom SAML Property Mapping:
- Set the _Expression_ to: - Set the _Expression_ to:
```python ```python
for group in user.ak_groups.all(): for group in request.user.all_groups():
yield group.name yield group.name
if ak_is_group_member(request.user, name="<authentik nextcloud admin group's name>"): if ak_is_group_member(request.user, name="<authentik nextcloud admin group's name>"):
yield "admin" yield "admin"