DEV Community

Discussion on: Integrate Stripe in your Ruby on Rails app

Collapse
 
yverbytskyi profile image
Yurii Verbytskyi

Hi, what's the point of defining instance variable in BillingController

  @user=current_user.email
Enter fullscreen mode Exit fullscreen mode

if you can use

current_user.email
Enter fullscreen mode Exit fullscreen mode

directly in views using Rails?
P.S. It's strange to see this part of code in turorials:

  subscriptions.each do |subscription|
    subscription.delete
  end
Enter fullscreen mode Exit fullscreen mode

Instead of this one:

  subscriptions.each(&:delete)
Enter fullscreen mode Exit fullscreen mode