We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69e2807 commit 1f7514cCopy full SHA for 1f7514c
2 files changed
lib/cloudflare/certificates.rb
@@ -5,7 +5,7 @@ module Cloudflare
5
6
class Certificate < Representation
7
def certificate
8
- value[:certificate]
+ result[:certificate]
9
end
10
11
lib/cloudflare/i_ps.rb
@@ -4,9 +4,9 @@ module Cloudflare
4
class IPs < Representation
def cidrs(ipv: nil)
if ipv
- value[:"ipv#{ipv}_cidrs"]
+ result[:"ipv#{ipv}_cidrs"]
else
- value[:ipv4_cidrs].to_a + value[:ipv6_cidrs].to_a
+ result[:ipv4_cidrs].to_a + result[:ipv6_cidrs].to_a
12
0 commit comments