pg_engine/config/routes.rb in pg_rails-7.6.2 vs pg_engine/config/routes.rb in pg_rails-7.6.3
- old
+ new
@@ -19,9 +19,13 @@
devise_for :users, controllers: {
confirmations: 'users/confirmations',
registrations: 'users/registrations'
}, failure_app: PgEngine::DeviseFailureApp
namespace :users, path: 'u' do
+ scope controller: 'inline_edit', path: 'inline', as: :inline do
+ get 'edit'
+ get 'show'
+ end
get 'dashboard', to: 'dashboard#dashboard'
post 'notifications/mark_as_seen', to: 'notifications#mark_as_seen'
post 'notifications/mark_as_unseen', to: 'notifications#mark_as_unseen'
get 'date_jumper/jump'
scope controller: 'account_switcher', path: 'switcher' do