mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-03-03 08:09:26 +00:00
11 lines
214 B
Ruby
11 lines
214 B
Ruby
|
|
# This is for building http responses with Fabricate
|
|
# Usage: Fabricate(:customer).to_json
|
|
# See: https://stripe.com/docs/api
|
|
|
|
module DiscourseDonations
|
|
class StripeResponse
|
|
attr_accessor :to_json
|
|
end
|
|
end
|