config/routes.rb in phcdevworks_accounts-3.1.2 vs config/routes.rb in phcdevworks_accounts-3.2.0
- old
+ new
@@ -8,11 +8,12 @@
match "/admin", to: "admin/pages#dashboard", via: "get"
match "/admin/users/all", to: "admin/pages#users_list", via: "get"
match "/admin/user/:id", to: "admin/pages#user_profile", via: "get"
# User Routes
- devise_for :users, {
- class_name: "PhcdevworksAccounts::User",
- module: :devise
+ devise_for :users, class_name: "PhcdevworksAccounts::User",
+ module: :devise,
+ controllers: {
+ registrations: 'users/registrations'
}
end