Module: Authralia::Controllers::Helpers

Extended by:
ActiveSupport::Concern
Defined in:
lib/controllers/helpers.rb

Instance Method Summary collapse

Instance Method Details

#set_browser_guidObject



105
106
107
108
109
# File 'lib/controllers/helpers.rb', line 105

def set_browser_guid
  if cookies[:browser_guid].blank?
    cookies.permanent.signed.encrypted[:browser_guid] = SecureRandom.uuid
  end
end