blob: 00e1e9ac902c97c4a0fbc035e524ad7a1fa15df9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# frozen_string_literal: true
module Saml
module Kit
class Response
def build_table(table = [])
super(table)
assertion.build_table(table) if assertion.present?
table
end
end
end
end
|