houdini/lib/construct/construct_nonprofit.rb
2020-06-15 10:26:57 -05:00

17 lines
550 B
Ruby

# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
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
h
end
end