5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-15 23:41:42 +00:00

fix: consistencia al llamar a headers
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
f 2023-08-16 16:46:11 -03:00
parent a2678c3e81
commit ef8ed271d7

View file

@ -38,10 +38,10 @@ module Api
request.headers['X-Gitlab-Token']
# Github
elsif request.headers['X-Hub-Signature-256'].present?
token_from_signature(request.headers['X_Hub_Signature_256'], 'sha256=')
token_from_signature(request.headers['X-Hub-Signature-256'], 'sha256=')
# Gitea
elsif request.headers['X_Gitea_Signature'].present?
token_from_signature(request.headers['X_Gitea_Signature'])
elsif request.headers['X-Gitea-Signature'].present?
token_from_signature(request.headers['X-Gitea-Signature'])
else
raise ActiveRecord::RecordNotFound, 'proveedor no soportado'
end