module Authifer::Paths

Public Instance Methods

delete_session_path() click to toggle source
# File lib/authifer/paths.rb, line 19
def delete_session_path
  "#{sessions_path}/delete"
end
new_session_path() click to toggle source
# File lib/authifer/paths.rb, line 15
def new_session_path
  "#{sessions_path}/new"
end
new_user_path() click to toggle source
# File lib/authifer/paths.rb, line 7
def new_user_path
  "#{users_path}/new"
end
sessions_path() click to toggle source
# File lib/authifer/paths.rb, line 11
def sessions_path
  "/sessions"
end
users_path() click to toggle source
# File lib/authifer/paths.rb, line 3
def users_path
  "/users"
end