Sha256: f3525a6a877e23d8bb3983247a5b51f40ef7d5fcdbb0f6725f00206bf78684a1

Contents?: true

Size: 522 Bytes

Versions: 23

Compression:

Stored size: 522 Bytes

Contents

# frozen_string_literal: true

xml.SPSSODescriptor descriptor_options do
  configuration.certificates.each do |certificate|
    render certificate, xml: xml
  end
  logout_urls.each do |item|
    xml.SingleLogoutService Binding: item[:binding], Location: item[:location]
  end
  name_id_formats.each do |format|
    xml.NameIDFormat format
  end
  acs_urls.each_with_index do |item, index|
    xml.AssertionConsumerService Binding: item[:binding], Location: item[:location], index: index, isDefault: index.zero?
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
saml-kit-1.0.14 lib/saml/kit/builders/templates/service_provider_metadata.builder
saml-kit-1.0.13 lib/saml/kit/builders/templates/service_provider_metadata.builder
saml-kit-1.0.12 lib/saml/kit/builders/templates/service_provider_metadata.builder