link_toからのcontrollerの記述が知りたい
index.html.erbからのcontrollerがうまくいかない
ログイン時にユーザー名を表示させる実装中に以下のエラーメッセージが発生しました。
NoMethodError in Prototypes#index
該当のソースコード
ソースコード ```class PrototypesController < ApplicationController before_action :move_to_index, except: [:index, :show] def index end def move_to_index unless user_signed_in? redirect_to action: :index end end end ### 試したこと protospase_controllerコードをいろいろ書いたのですが記述がわかりません 始めたばかりでどこがどうなっているかも分からず困っています 勉強したいのでどうかよろしくお願いします
あなたの回答
tips
プレビュー