Results 76 comments of Antonio Facciolo

I have these 2 resources in my routes: ``` namespace :admin do resources :users, only: :index namespace :configurations do resources :configurations, only: :index end end ``` And I have my...

Yes, this is my initializer: ``` Rails.application.config.to_prepare do Alchemy::Modules.register_module( name: 'presets', order: 1, navigation: { name: 'modules.presets', controller: '/admin/configurations/configurations', action: 'index' } ) Alchemy::Modules.register_module( name: 'users', order: 2, navigation: {...

@tvdeyen I have found the problem. In my routes I had only the index path defined: ``` resources :users, only: :index ``` but the resources table needs also the new...

> and will be removed someday. It has been removed from master already... And also [the method](https://github.com/AlchemyCMS/alchemy_cms/commit/ae9af3c414a1e8c267d5969739a80c00ff113c4c#diff-49c1c7c0bc0948a78e4c0c7015908bb3025667095dd355c34158117c94af2bd8L160) used to render the row for the resource. So I assume I have...

It was not so difficult to migrate to the new structure. Anyway I have tested the branch and it still doesn't work. Same error. I have tried to install also...

> > But I wonder why I have this issue and you or others don't... What's the difference in the setup? If you use a CDN and get the images...

> Yeah. A very outdated thing to do. With HTTP2 and modern browsers you do not need to load assets from another host. This was when browsers weren't able to...

I have done in this way and obviously the problem is solved.

I have the same issue in two websites, where the configuration is very similar, so I assume I have the same mistake in both. In both websites I use Shakapacker...

I thought that the `alchemy_manifest.js` should have been responsible to give the directives used by Sprockets in the main app to precompile the Alchemy assets... How the file `all.js` gets...