You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm developing plugins for Redmine and I'm trying to use this gem. My goal is to include it without modifying any code of the application (Redmine).
I've add the gem dependency in my Gemfile, the migration as a plugin migration and I've patch the WillFilter::Config class to load config from /plugins/.../config/.... The mount WillFilter::Engine => "/will_filter" has been added to the plugin's routes.
When I run rake routes I can see all will_filter's routes, the will_filter_tag is being displayed BUT I'm getting 404 on all will_filter's assets.
Is there any way to manually precompile them to the public directory or something that works for me? I'm just missing that.
The text was updated successfully, but these errors were encountered:
I had something similar in my rails app. I added them to my asset pipeline, and looking at the compile css, I saw the will_filter parts (wf_ prefix). I ended up having to edit will_filter's _scripts.html.erb to remove all the asset links, since the CSS was available, just not in that location.
I'm developing plugins for Redmine and I'm trying to use this gem. My goal is to include it without modifying any code of the application (Redmine).
I've add the gem dependency in my Gemfile, the migration as a plugin migration and I've patch the
WillFilter::Config
class to load config from/plugins/.../config/...
. Themount WillFilter::Engine => "/will_filter"
has been added to the plugin's routes.When I run
rake routes
I can see all will_filter's routes, thewill_filter_tag
is being displayed BUT I'm getting 404 on all will_filter's assets.Is there any way to manually precompile them to the public directory or something that works for me? I'm just missing that.
The text was updated successfully, but these errors were encountered: