We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 630a156 commit bdccdc2Copy full SHA for bdccdc2
1 file changed
lib/onelogin/ruby-saml/authrequest.rb
@@ -19,8 +19,8 @@ class Authrequest < SamlMessage
19
# Initializes the AuthNRequest. An Authrequest Object that is an extension of the SamlMessage class.
20
# Asigns an ID, a random uuid.
21
#
22
- def initialize
23
- @uuid = OneLogin::RubySaml::Utils.uuid
+ def initialize(**options)
+ @uuid = "#{options[:id_prefix]}#{OneLogin::RubySaml::Utils.uuid}#{options[:id_suffix]}"
24
end
25
26
# Creates the AuthNRequest string.
0 commit comments