Path helpers generate paths with dots instead of slashes

Yes, this is a pluralization error.

By passing the ID 1, I assume that you wish to display a single record.

So you need to use the singular ‘message_thread’:

message_thread_path(1)

Which will yield:

http://localhost:3000/message_threads/1

Leave a Comment