Skip to content

Commit bed60ad

Browse files
committed
Add missing 'registration' property to 'relyingparty'
1 parent a764aeb commit bed60ad

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

docs/modules/ROOT/pages/servlet/saml2/login/authentication-requests.adoc

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,11 @@ spring:
143143
security:
144144
saml2:
145145
relyingparty:
146-
okta:
147-
assertingparty:
148-
entity-id: ...
149-
singlesignon.sign-request: false
146+
registration:
147+
okta:
148+
assertingparty:
149+
entity-id: ...
150+
singlesignon.sign-request: false
150151
----
151152
152153
Java::

docs/modules/ROOT/pages/servlet/saml2/login/overview.adoc

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -886,16 +886,17 @@ spring:
886886
security:
887887
saml2:
888888
relyingparty:
889-
okta:
890-
signing.credentials: &relying-party-credentials
891-
- private-key-location: classpath:rp.key
892-
certificate-location: classpath:rp.crt
893-
assertingparty:
894-
entity-id: ...
895-
azure:
896-
signing.credentials: *relying-party-credentials
897-
assertingparty:
898-
entity-id: ...
889+
registration:
890+
okta:
891+
signing.credentials: &relying-party-credentials
892+
- private-key-location: classpath:rp.key
893+
certificate-location: classpath:rp.crt
894+
assertingparty:
895+
entity-id: ...
896+
azure:
897+
signing.credentials: *relying-party-credentials
898+
assertingparty:
899+
entity-id: ...
899900
----
900901

901902
Second, in a database, you need not replicate the model of `RelyingPartyRegistration`.

0 commit comments

Comments
 (0)