I am merging two applications school and children. Each working fine With children application nested in school application. Each of them have its own Database. Here is part of the tree for school app:
app/controllers/application_controller.rb
app/controllers/user.rb
....
app/controllers/children/application_controller.rb
app/controllers/children/user.rb ....
and had these warning:
toplevel constant ApplicationController referenced by Children::ApplicationController
toplevel constant User referenced by Children::User
in app/controllers/children/application_controller.rb i have
class Children::ApplicationController < ActionController::Base
in app/controllers/application_controller.rb i have
class class ApplicationController < ActionController::Base
the nested ApplicationController is not loaded.the namespace is not working?