Created
June 9, 2013 08:27
-
-
Save blueplanet/5742806 to your computer and use it in GitHub Desktop.
Rails の link_to で `controller` にパラメータの渡し方 ref: http://qiita.com/items/9d36b59c8bf9d65a6339
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
= link_to "参加", join_group_event_path(@group, @event, join_type: Event::JOIN) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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