Posts by Lucas Medeiros • 3 points
2 posts
-
0
votes2
answers72
viewsA: Q. Rails Undefined method `full name_for #<Room:0x0000000ed6d478>
The problem is that the method should be defined in the model, not in the controller. If it was in the controller the error I would get would be RoomController:0x0000000ed6d478 instead of…
-
0
votes2
answers72
viewsQ: Q. Rails Undefined method `full name_for #<Room:0x0000000ed6d478>
My Controller: class RoomsController < ApplicationController before_action :set_room, only: [:show, :edit, :update, :destroy] def nome_completo "#{title}, #{location}" end # GET /rooms # GET…