I have two models: Boards
and Topics
. I want to be able to add Topics
to Boards
. My nested resources are:
resources :boards do
resources :topics
end
My 'boards#show' action:
def show
@board = Board.find(params[:id])
@new_topics = Topic.all
end
which lists all posts and has a link_to
:
<ul>
<%@new_topics.each do |i|%>
<li><%=i.title%> <%=link_to "Add", board_topic_path(@board,i), :method=> :put%></li>
<%end%>
</ul>
I'm also using strong_params for my Boards
and Topics
controller as follows:
boards_controller:
def update
@board = Board.find(params[:board_id])
@topic = Topic.find(params[:id])
if @board.update(board_params)
flash[:notice] = "Added!"
@board.topics << @topic
redirect_to boards_path
else
flash[:alert] = "Problem!"
redirect_to boards_path
end
end
...
private
def board_params
params.require(:board).permit(:name,:description)
end
topics_controller:
...
private
def topic_params
params.require(:topic).permit(:title,:body,:user_id)
end
the error message I'm getting: param is missing or the value is empty: topic.
In a RESTful situation as yours, with that link you should be hitting the
update
action ofTopicsController
with twoparams
:board_id
andid
.Try this instead:
Still, this is still off from any convention, as you are not updating a whole topic. You probably want to use an extra action to add a topic to a board, using the PATCH verb.