You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
382 B
15 lines
382 B
# frozen_string_literal: true
|
|
|
|
module SelfDestructHelper
|
|
def self.self_destruct?
|
|
value = ENV.fetch('SELF_DESTRUCT', nil)
|
|
value.present? && Rails.application.message_verifier('self-destruct').verify(value) == ENV['LOCAL_DOMAIN']
|
|
rescue ActiveSupport::MessageVerifier::InvalidSignature
|
|
false
|
|
end
|
|
|
|
def self_destruct?
|
|
SelfDestructHelper.self_destruct?
|
|
end
|
|
end
|