digidentity/libsaml

View on GitHub
lib/saml/logout_response.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Saml
  class LogoutResponse
    include Saml::ComplexTypes::StatusResponseType

    tag "LogoutResponse"

    def partial_logout?
      !success? && status.status_code.partial_logout?
    end
  end
end