1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-22 15:43:04 -05:00

14 lines
203 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Vacuum::SystemKeysVacuum
def perform
vacuum_expired_system_keys!
end
private
def vacuum_expired_system_keys!
SystemKey.expired.delete_all
end
end