mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-17 08:54:59 +00:00
12 lines
244 B
Ruby
12 lines
244 B
Ruby
# frozen_string_literal: true
|
|
|
|
# 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
|