Próbuję wprowadzić uwierzytelnianie z Devise w mojej aplikacji Rails (Rails 2.3.8, Devise 1.0.7, kundel działający pod Windows Vista). Ale ja otrzymuję następujący błąd:co to jest zmienna devise_mapping i jak ją uwzględnić?
undefined local variable or method `devise_mapping' for #<ActionView::Base:0x6d63890>
To kiedy mogę używać automatycznie wygenerowane częściowe _devise_links.html.
<%- if controller_name != 'sessions' %>
<%= link_to t('devise.sessions.link'), new_session_path(resource_name) %><br />
<% end -%>
<%- if devise_mapping.registerable? && controller_name != 'registrations' %>
<%= link_to t('devise.registrations.link'), new_registration_path(resource_name) %><br />
<% end -%>
<%- if devise_mapping.recoverable? && controller_name != 'passwords' %>
<%= link_to t('devise.passwords.link'), new_password_path(resource_name) %><br />
<% end -%>
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
<%= link_to t('devise.confirmations.link'), new_confirmation_path(resource_name) %><br />
<% end -%>
<%- if devise_mapping.lockable? && controller_name != 'unlocks' %>
<%= link_to t('devise.unlocks.link'), new_unlock_path(resource_name) %><br />
<% end -%>
Wszelkie pomysły na rozwiązanie tego problemu? Zakładam, że zmienna devise_mapping nie jest uwzględniana w moich widokach, ale co mam z tym zrobić?
Dobra, zła odpowiedź, chyba. – courtsimas