digidentity/libsaml

View on GitHub
lib/saml/elements/scoping.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Saml
  module Elements
    class Scoping
      include Saml::Base

      tag 'Scoping'
      namespace 'samlp'

      has_one :idp_list, Saml::Elements::IdpList
    end
  end
end