main
 1# frozen_string_literal: true
 2
 3module Saml
 4  module Kit
 5    class AuthenticationRequest
 6      def build_table(table = [])
 7        super(table)
 8        table.push(['ACS', assertion_consumer_service_url])
 9        table.push(['Name Id Format', name_id_format])
10        table
11      end
12    end
13  end
14end