Skip to content

Instantly share code, notes, and snippets.

@Circuit8
Created July 7, 2017 12:49
Show Gist options
  • Save Circuit8/44bb3769564ae36082a2f224b37c1181 to your computer and use it in GitHub Desktop.
Save Circuit8/44bb3769564ae36082a2f224b37c1181 to your computer and use it in GitHub Desktop.
def create_payment_method source_id
begin
source = stripe_customer.sources.create({source: source_id})
stripe_customer.default_source = source_id
stripe_customer.save
rescue => e
Rails.logger.error e.message
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment