mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
18 lines
430 B
Ruby
18 lines
430 B
Ruby
module Devise
|
|
class PathChecker
|
|
include Rails.application.routes.url_helpers
|
|
|
|
def self.default_url_options(*args)
|
|
ApplicationController.default_url_options(*args)
|
|
end
|
|
|
|
def initialize(env, scope)
|
|
@current_path = "/#{env["SCRIPT_NAME"]}/#{env["PATH_INFO"]}".squeeze("/")
|
|
@scope = scope
|
|
end
|
|
|
|
def signing_out?
|
|
@current_path == send("destroy_#{@scope}_session_path")
|
|
end
|
|
end
|
|
end
|