私が書いているアプリでは、簡単な手作り認証(Railscast.comに記載)を使用しています。 Ryan BatesのNiftyGenerators gemのコードを使って、私は認証のためのいくつかの便利な方法を持つ認証モデルを持っています。このモジュールはapplication_controller.rb
に含まれています。ログイン後に直前のURLにリダイレクトする - Rails
私が使用したい方法の1つはredirect_to_target_or_default
です。私はこれが認証されたユーザーがいたページにリダイレクトする必要があることを知っていますが、このメソッドをどこに呼び出すべきかわかりません。誰かが私にこの方法の使い方についてのアイデアを与えることができたら、私はそれを高く評価します。
ControllerAuthenticaionモジュールのコード
module ControllerAuthentication
# Makes these methods helper methods in the controller that includes this module.
def self.included(controller)
controller.send :helper_method,
:current_admin, :logged_in?,
:redirect_to_target_or_default
end
def current_admin
@current_admin ||= Admin.find(session[:admin_id]) if session[:admin_id]
end
def logged_in?
current_admin
end
def login_required
unless logged_in?
store_target_location
redirect_to login_url,
:alert => "You must first log in before accessing this page."
end
end
def redirect_to_target_or_default(default, *args)
redirect_to(session[:return_to] || default, *args)
session[:return_to] = nil
end
def redirect_to_or_default(target, *args)
redirect_to(target || default, *args)
end
def store_target_location
session[:return_to] = request.url
end
end
私が探していたもの!ありがとう! – agentbanks217