Module: ActionAuth::Routing::Helpers
- Defined in:
- lib/action_auth/routing/helpers.rb
Instance Method Summary collapse
- #edit_password_path ⇒ Object
- #new_user_registration_path ⇒ Object
- #new_user_session_path ⇒ Object
- #password_path ⇒ Object
- #user_session_path(session_id) ⇒ Object
- #user_sessions_path ⇒ Object
Instance Method Details
#edit_password_path ⇒ Object
20 21 22 |
# File 'lib/action_auth/routing/helpers.rb', line 20 def edit_password_path action_auth.edit_password_path end |
#new_user_registration_path ⇒ Object
16 17 18 |
# File 'lib/action_auth/routing/helpers.rb', line 16 def new_user_registration_path action_auth.sign_up_path end |
#new_user_session_path ⇒ Object
12 13 14 |
# File 'lib/action_auth/routing/helpers.rb', line 12 def new_user_session_path action_auth.sign_in_path end |
#password_path ⇒ Object
24 25 26 |
# File 'lib/action_auth/routing/helpers.rb', line 24 def password_path action_auth.password_path end |
#user_session_path(session_id) ⇒ Object
8 9 10 |
# File 'lib/action_auth/routing/helpers.rb', line 8 def user_session_path(session_id) action_auth.session_path(session_id) end |
#user_sessions_path ⇒ Object
4 5 6 |
# File 'lib/action_auth/routing/helpers.rb', line 4 def user_sessions_path action_auth.sessions_path end |