1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Update standard rules (#5360)

* update standard rules and run standard:fix

* Fix more standard errors

* standardize
This commit is contained in:
Mike Perham 2022-06-05 07:44:52 -07:00 committed by GitHub
parent 2d743d7a70
commit 55ced28181
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
40 changed files with 143 additions and 183 deletions

View file

@ -1,11 +1,11 @@
# turns off browser asset caching so we can test CSS changes quickly
ENV['SIDEKIQ_WEB_TESTING'] = '1'
ENV["SIDEKIQ_WEB_TESTING"] = "1"
require 'sidekiq/web'
Sidekiq::Web.app_url = '/'
require "sidekiq/web"
Sidekiq::Web.app_url = "/"
Rails.application.routes.draw do
mount Sidekiq::Web => '/sidekiq'
mount Sidekiq::Web => "/sidekiq"
get "work" => "work#index"
get "work/email" => "work#email"
get "work/post" => "work#delayed_post"