I'm using Devise for user registration in my rails app. I have modified the RegistrationsController and sign up views to add Stripe integration. There are several subscription plans a user can select from a select_tag.
On my home page it displays the plans. When the user selects one and it directs them to the sign up page I want to automatically select that plan in the select_tag. I can do that using if/else statements. How do I tell my sign up view what plan the user selected on the home page?