0
0
Fork 0

Fix Style/StabbyLambdaParentheses cop (#27771)

This commit is contained in:
Matt Jankowski 2023-11-08 07:01:18 -05:00 committed by GitHub
parent 757d7c73c0
commit 33cc3ae8fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 10 deletions

View file

@ -44,7 +44,7 @@ Rails.application.configure do
config.force_ssl = true
config.ssl_options = {
redirect: {
exclude: ->request { request.path.start_with?('/health') || request.headers["Host"].end_with?('.onion') || request.headers["Host"].end_with?('.i2p') }
exclude: ->(request) { request.path.start_with?('/health') || request.headers["Host"].end_with?('.onion') || request.headers["Host"].end_with?('.i2p') }
}
}