2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-08-13 15:11:19 -04:00
|
|
|
module Jobs
|
2019-10-02 00:01:53 -04:00
|
|
|
class PurgeUnactivated < ::Jobs::Scheduled
|
2014-08-13 15:11:19 -04:00
|
|
|
every 1.day
|
|
|
|
|
|
|
|
def execute(args)
|
2014-12-03 00:36:25 -05:00
|
|
|
User.purge_unactivated
|
2014-08-13 15:11:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|