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 call this with:
link(student.name, to: game_game_score_path(@conn, :new, @game, student_id: student))
But this creates a link: / games / 1 / score? student_id = 1 instead of / games / 1 / score / 1.
How do I call to generate the correct URL?
Oh, and is there a way to get rid of double play in an assistant? I tried adding as :: game_score, but that didn't change anything.
source
share