website/integrations: Fix Kimai Group mapping attribute (#2565)
* Fix: Group mapping attribute Missed it before, sorry. Now it works properly * Fix: branding Co-authored-by: hexx.one <dominics.pc@gmail.com>
This commit is contained in:
parent
d9724e6885
commit
2a354aa64f
|
@ -45,7 +45,7 @@ To get the value for `x509cert`, go to *System* > *Certificates*, and download t
|
||||||
kimai:
|
kimai:
|
||||||
saml:
|
saml:
|
||||||
activate: true
|
activate: true
|
||||||
title: Login with SAML
|
title: Login with authentik
|
||||||
mapping:
|
mapping:
|
||||||
- {
|
- {
|
||||||
saml: $http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress,
|
saml: $http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress,
|
||||||
|
@ -56,13 +56,13 @@ kimai:
|
||||||
kimai: alias,
|
kimai: alias,
|
||||||
}
|
}
|
||||||
roles:
|
roles:
|
||||||
attribute: Roles
|
attribute: http://schemas.xmlsoap.org/claims/Group
|
||||||
mapping:
|
mapping:
|
||||||
# Insert your roles here (ROLE_USER is added automatically)
|
# Insert your roles here (ROLE_USER is added automatically)
|
||||||
- { saml: admin.group, kimai: ROLE_ADMIN }
|
- { saml: admin.group, kimai: ROLE_ADMIN }
|
||||||
connection:
|
connection:
|
||||||
# You SAML provider
|
# You SAML provider
|
||||||
# Your Authentik instance, replace https://authentik.company with your authentik URL
|
# Your authentik instance, replace https://authentik.company with your authentik URL
|
||||||
idp:
|
idp:
|
||||||
entityId: "https://authentik.company/"
|
entityId: "https://authentik.company/"
|
||||||
singleSignOnService:
|
singleSignOnService:
|
||||||
|
|
Reference in New Issue