mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-17 00:03:02 -04:00
Fix account API resource bug.
This commit is contained in:
parent
a841cbe0f4
commit
be31c1934f
@ -1,5 +1,6 @@
|
|||||||
=== 1.7.7 2012-11-07
|
=== 1.7.7 2012-11-07
|
||||||
* Add support for updating charge disputes.
|
* Add support for updating charge disputes.
|
||||||
|
* Fix Account API resource bug.
|
||||||
|
|
||||||
=== 1.7.6 2012-10-30
|
=== 1.7.6 2012-10-30
|
||||||
* Add support for creating invoices.
|
* Add support for creating invoices.
|
||||||
|
@ -4,7 +4,7 @@ module Stripe
|
|||||||
if self == SingletonAPIResource
|
if self == SingletonAPIResource
|
||||||
raise NotImplementedError.new('SingletonAPIResource is an abstract class. You should perform actions on its subclasses (Account, etc.)')
|
raise NotImplementedError.new('SingletonAPIResource is an abstract class. You should perform actions on its subclasses (Account, etc.)')
|
||||||
end
|
end
|
||||||
"/#{CGI.escape(class_name.downcase)}"
|
"/v1/#{CGI.escape(class_name.downcase)}"
|
||||||
end
|
end
|
||||||
|
|
||||||
def url
|
def url
|
||||||
|
Loading…
x
Reference in New Issue
Block a user