-1
我在我的Ruby問題上Rails代碼:錯誤而驗證
class SessionsController < ApplicationController
def new
@title = "Sign in"
end
def destroy
end
def create
user = User.authenticate(params[:session][:email],
params[:session][:password])
if user.nil?
flash.now[:error] = "Invalid email/password combination."
@title = "Sign in"
render 'new'
else
sign_in user
redirect_to user
end
end
def destroy
sign_out
redirect_to root_path
end
end
錯誤消息:
private method `has_password?' called for #<User:0xb729d558>
app/models/user.rb:72:in `authenticate'
app/controllers/sessions_controller.rb:8:in `create'
我會如何解決這個問題?