Activity
Thanks so much!
Ran into this error in part 4 of the ActionCable group chat. What exactly am I missing? Schema looks fine same with MessagesController.
ActionController::UnknownFormat in MessagesController#create
MessagesController#create is missing a template for this request format and variant. request.formats: ["text/html"] request.variant: []
raise ActionController::UnknownFormat, message
What am I missing?
https://github.com/robSturcke/halibut/commit/4e4f4dce3360344f9326aee202d156591e2d67e3
Never mind! Missed adding user:reference when scrubbing back in the video!
Having some trouble figuring out what I'm missing with submitting a message in the chatroom, I get the error for my messages_controller.rb
saying that can't write unknown attribute `user_id
. However checking the source files I saw that my messages_controller.rb
was the exact same as the example under my create
saying message.user = current_user
is incorrect:
Error encountered at about 13min into tutorial.
def create
message = @chatroom.messages.new(message_params)
message.user = current_user
message.save
redirect_to @chatroom
end
GoRails Screencast code from part 3:
https://github.com/gorails-screencasts/chatrooms/blob/0a3d687b759d51fd84f5f57158773f4418f6410f/app/controllers/messages_controller.rb
My Code:
https://github.com/robSturcke/halibut/blob/master/app/controllers/messages_controller.rb
Running ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin16], Rails 5.0.0.1
Thanks for your help,
-RS