مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-12-01 05:43:04 +00:00
This removes all previous dependencies on RabbitMQ and the need to run separate cron and requeueing processes.
12 أسطر
176 B
Ruby
12 أسطر
176 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "authie/session"
|
|
|
|
class CleanupAuthieSessionsScheduledTask < ApplicationScheduledTask
|
|
|
|
def call
|
|
Authie::Session.cleanup
|
|
end
|
|
|
|
end
|