fix login

This commit is contained in:
rulingcom 2014-04-08 18:13:03 +08:00 committed by manson
parent fd4e8fd9b9
commit 748813aae2
1 changed files with 9 additions and 2 deletions

View File

@ -10,16 +10,23 @@ class SessionsController < Devise::SessionsController
@user_id = params[:user][:user_id]
@user_password = params[:user][:password]
if @user_id == 'rulingcom'
resource = User.first(conditions:{user_id: @user_id})
if !resource.blank?
if !resource.blank? and resource.valid_password?(@user_password)
resource_name = resource.class.to_s.downcase
sign_in(resource_name, resource)
redirect_to after_sign_in_path_for(resource)
elsif !resource.valid_password?(@user_password)
flash[:error] = "密碼錯誤<br />password Local fail"
redirect_to :root
else
flash[:error] = "很抱歉,您無此權限或帳號登入本站,請洽本站管理員<br />Sorry, you don't have the account or authority to login. Please contact the website administrator."