main
1# frozen_string_literal: true
2
3module Saml
4 module Kit
5 class Metadata
6 # @deprecated
7 def organization_name
8 Saml::Kit.deprecate('`organization_name` is deprecated. Use `organization.name`')
9 organization.name
10 end
11
12 # @deprecated
13 def organization_url
14 Saml::Kit.deprecate('`organization_url` is deprecated. Use `organization.url`')
15 organization.url
16 end
17 end
18 end
19end