Using Devise and wanting the user to go to a specific page after they sign up. Here's the kicker; the user can either sign up as a Buyer or a Worker via radio button. When they sign up as a Worker, I want them to go to a specific path.
So far, the code I have now, a Buyer and Worker will both go to the same path. The 'current_user.worker?' code is what I think is not working right.
new.html.erb
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
<%= radio_button_tag 'user[role]', 'worker' %>
<%= radio_button_tag 'user[role]', 'buyer' %>
<%= f.text_field :username %>
<%= f.email_field :email %>
<%= f.password_field :password %>
<%= f.password_field :password_confirmation %>
<%= f.submit 'Create Account', :class => 'button' %>
<% end %>
application_controller.rb
class ApplicationController < ActionController::Base
def after_sign_up_path_for(resource_or_scope)
if current_user.worker?
account_setup_path
else
end
end
end
def worker?; role == 'worker' end– Octopus-Paul Dec 21 '11 at 10:10