Sha256: f5c0e6b35a2cf9ef2706714d175be806551ab475c2585856b86c47356c1387f0
Contents?: true
Size: 510 Bytes
Versions: 39
Compression:
Stored size: 510 Bytes
Contents
# After each sign in, update sign in time, sign in count and sign in IP. # This is only triggered when the user is explicitly set (with set_user) # and on authentication. Retrieving the user from session (:fetch) does # not trigger it. Warden::Manager.after_set_user except: :fetch do |record, warden, options| if record.respond_to?(:update_tracked_fields!) && warden.authenticated?(options[:scope]) && !warden.request.env['devise.skip_trackable'] record.update_tracked_fields!(warden.request) end end
Version data entries
39 entries across 39 versions & 8 rubygems