Update Configuration authored by Janne Lauros's avatar Janne Lauros
...@@ -2,3 +2,15 @@ ...@@ -2,3 +2,15 @@
At the bare minimum the plugin shows Personal Data - page for the user. For this you need to define the Profile Configuration to access the page and the attributes to show on it. At the bare minimum the plugin shows Personal Data - page for the user. For this you need to define the Profile Configuration to access the page and the attributes to show on it.
## USERPROFILE.SSO ## USERPROFILE.SSO
For user to be authenticated and to be shown User Profile pages, the 'USERPROFILE.SSO' profile configuration needs to be enabled by adding it to shibboleth.UnverifiedRelyingParty bean.
```
<!-- Example of activating USERPROFILE.SSO in relying-party.xml -->
<bean id="shibboleth.UnverifiedRelyingParty" parent="RelyingParty">
<property name="profileConfigurations">
<list>
<bean parent="USERPROFILE.SSO"/>
</list>
</property>
</bean>
```
\ No newline at end of file