I have this in my router.ex:
resources "/games", GamesController do
get "/scores/:student_id", GameScoreController, :new
post "/scores/:student_id", GameScoreController, :create
end
Now I am calling this with:
link(student.name, to: game_game_score_path(@conn, :new, @game, student_id: student))
But that creates a link: /games/1/scores?student_id=1 instead of /games/1/scores/1.
How do I call link so it generates the correct url?
Oh, and is there a way to get rid of the double game in the helper? I tried adding as: :game_score, but that did not change anything.