私の質問は実際にはかなり単純です。ユーザーがログインしているかどうかを確認する作成アクションを作成し、ユーザーがリンクなどを持っているインデックスページをレンダリングする代わりに、ダッシュボードにリダイレクトされるかどうかを確認するにはどうすればよいですか。にサインアップします。また、以下のコードが機能しないのはなぜですか。
クラスUsersController<ApplicationController
def new
@user = User.new
end
def create
if current_user.nil?
redirect_to dplace_index_path
if current_user
@user = User.new(params[:user])
if @user.save
auto_login(@user)
redirect_to dplace_index_path
end
end
end
end
end