Files
chatwoot/app/controllers/concerns/hmac_concern.rb
2023-05-29 21:57:24 +05:30

6 lines
123 B
Ruby

module HmacConcern
def hmac_verified?
ActiveModel::Type::Boolean.new.cast(params[:hmac_verified]).present?
end
end