config/chaltron_navigation.rb in chaltron-0.2.2 vs config/chaltron_navigation.rb in chaltron-0.2.3
- old
+ new
@@ -9,25 +9,25 @@
text: I18n.t('chaltron.menu.admin')
}, nil do |admin|
admin.item :users,
{ icon: 'fa fa-fw fa-users',
text: I18n.t('chaltron.menu.users')
- }, users_url, highlights_on: /\/(users|ldap)(?!\/self_(show|edit|update))/ if can?(:manage, User)
+ }, users_path, highlights_on: /\/(users|ldap)(?!\/self_(show|edit|update))/ if can?(:manage, User)
admin.item :logs,
{ icon: 'fa fa-fw fa-book',
text: I18n.t('chaltron.menu.logs')
- }, logs_url, highlights_on: /\/logs/ if can?(:read, Log)
+ }, logs_path, highlights_on: /\/logs/ if can?(:read, Log)
end if can?(:manage, User) or can?(:read, Log)
primary.item :logged, current_user.display_name.html_safe, nil do |user|
user.dom_class = 'dropdown-menu-right'
user.item :self_edit, { icon: 'fa fa-fw fa-user',
- text: I18n.t('chaltron.menu.self_show') }, self_show_users_url,
+ text: I18n.t('chaltron.menu.self_show') }, self_show_users_path,
highlights_on: /\/self_(show|edit|update)/
user.item :logout, { icon: 'fa fa-fw fa-sign-out', text: 'Logout' },
- destroy_user_session_url, method: :delete
+ destroy_user_session_path, method: :delete
end
else
- primary.item :login, { icon: 'fa fa-fw fa-sign-in', text: 'Login' }, new_user_session_url
+ primary.item :login, { icon: 'fa fa-fw fa-sign-in', text: 'Login' }, new_user_session_path
end
end
end