Embed a reskey-web-interface in my rails application

I am using resque web front end to manage my background jobs. I am wondering if anyone knows how I can embed this interface in my main layout. I want to use the application layout and keep the html header.

I actually mount resque as a Rails rack.

mount Resque::Server.new, :at => "/resque"
+5
source share
1 answer

In resque gem

resque / lib / resque / server /

There is a view and a shared folder that you could directly modify, or these view files are used by the sinatra application, which is called in

resque/lib/resque/server.rb

You can decapitate this server class (Sinatra application) to use your own views.

0
source

All Articles