Skip to content

Instantly share code, notes, and snippets.

@blueplanet
Created June 9, 2013 08:27
Show Gist options
  • Save blueplanet/5742806 to your computer and use it in GitHub Desktop.
Save blueplanet/5742806 to your computer and use it in GitHub Desktop.
Rails の link_to で `controller` にパラメータの渡し方 ref: http://qiita.com/items/9d36b59c8bf9d65a6339
= link_to "参加", join_group_event_path(@group, @event, join_type: Event::JOIN)
def join
@event.event_users.create user: current_user, join_type: params[:join_type]
redirect_to group_event_path(@group, @event)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment