6 lines
123 B
Ruby
6 lines
123 B
Ruby
|
|
module HmacConcern
|
||
|
|
def hmac_verified?
|
||
|
|
ActiveModel::Type::Boolean.new.cast(params[:hmac_verified]).present?
|
||
|
|
end
|
||
|
|
end
|