Skip to content

Instantly share code, notes, and snippets.

@leadhkr
Created April 27, 2015 03:42
Show Gist options
  • Save leadhkr/e39ceff31ab77a252e0a to your computer and use it in GitHub Desktop.
Save leadhkr/e39ceff31ab77a252e0a to your computer and use it in GitHub Desktop.
def create
@activity = Activity.new(activity_params)
categories = []
params[:activity][:category_ids].each do |id|
categories << Category.find(id)
end
@activity.categories << categories
if @activity.save
redirect_to activities_url
else
render :new
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment