2018-03-25 16:15:39 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
2018-03-25 17:30:42 +00:00
|
|
|
require 'create/stripe/create_stripe_account'
|
|
|
|
|
|
|
|
module ConstructNonprofit
|
|
|
|
|
|
|
|
def self.construct(user, h)
|
|
|
|
h[:verification_status] = 'unverified'
|
|
|
|
h[:published] = true
|
|
|
|
h[:statement] = h[:name][0..16]
|
|
|
|
h.except!(:website) if h[:website].blank?
|
|
|
|
stripe_acct = CreateStripeAccount.for_nonprofit(user, h)
|
|
|
|
h[:stripe_account_id] = stripe_acct.id
|
|
|
|
return h
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|