Browse Source
Apply Rubocop Performance/RedundantSplitRegexpArgument (#23443)
* Apply Rubocop Performance/RedundantSplitRegexpArgument
* Update app/controllers/concerns/signature_verification.rb
closed-social-glitch-2
Nick Schonning
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
app/controllers/concerns/signature_verification.rb
|
|
@ -227,7 +227,7 @@ module SignatureVerification |
|
|
|
end |
|
|
|
|
|
|
|
def to_header_name(name) |
|
|
|
name.split(/-/).map(&:capitalize).join('-') |
|
|
|
name.split('-').map(&:capitalize).join('-') |
|
|
|
end |
|
|
|
|
|
|
|
def missing_required_signature_parameters? |
|
|
|