When RAILS_ENV=production, calling expire_page (i.e. when updating a static page), results in a 404 (by calling a non-existant route)...
This is due to the fact that the route passed to expire_page has a controller specified without a trailing slash.
This results in the actual controller being called is 'admin/static_content' while it is evident (just by looking at the folder structure), that the 'static_content' controller is meant to be outside the admin namespace...
When RAILS_ENV=production, calling expire_page (i.e. when updating a static page), results in a 404 (by calling a non-existant route)... This is due to the fact that the route passed to expire_page has a controller specified without a trailing slash. This results in the actual controller being called is 'admin/static_content' while it is evident (just by looking at the folder structure), that the 'static_content' controller is meant to be outside the admin namespace...
Hope you'll pull it :)
Keep up the good work.
Matteo