mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
f1867a7388
* Adjust privacy policy to be more specific to Mastodon Fix #6613 * Change data retention of IP addresses from 5 years to 1 year * Add even more information * Remove all (now invalid) translations of the privacy policy * Add information about archive takeout, remove pointless consent section * Emphasis on DM privacy * Improve wording * Add line about data use for moderation purposes
15 lines
360 B
Ruby
15 lines
360 B
Ruby
# frozen_string_literal: true
|
|
require 'sidekiq-scheduler'
|
|
|
|
class Scheduler::IpCleanupScheduler
|
|
include Sidekiq::Worker
|
|
|
|
RETENTION_PERIOD = 1.year
|
|
|
|
def perform
|
|
time_ago = RETENTION_PERIOD.ago
|
|
SessionActivation.where('updated_at < ?', time_ago).destroy_all
|
|
User.where('last_sign_in_at < ?', time_ago).update_all(last_sign_in_ip: nil)
|
|
end
|
|
end
|