Merge pull request #4722 from oblakeerickson/typo_routes_file

FIX: typo in a routes.rb comment
This commit is contained in:
Guo Xiang Tan 2017-02-27 11:51:13 +08:00 committed by GitHub
commit 2fc0b35765
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ Discourse::Application.routes.draw do
mount Sidekiq::Web => "/sidekiq"
mount Logster::Web => "/logs"
else
# only allow sidekie in master site
# only allow sidekiq in master site
mount Sidekiq::Web => "/sidekiq", constraints: AdminConstraint.new(require_master: true)
mount Logster::Web => "/logs", constraints: AdminConstraint.new
end