Merge branch 'master' into refactor-contact-archivation

This commit is contained in:
Karl Erik Õunapuu 2020-09-03 14:43:25 +03:00 committed by GitHub
commit b2dab0d316
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 253 additions and 36 deletions

View file

@ -0,0 +1,7 @@
namespace :epp do
desc 'Clear expired EPP sessions'
task clear_expired_sessions: :environment do
Epp::ExpiredSessions.new(EppSession.expired).clear
end
end