mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
9 lines
153 B
Ruby
9 lines
153 B
Ruby
class RemoveExpiredGroupLinksWorker
|
|
include ApplicationWorker
|
|
include CronjobQueue
|
|
|
|
def perform
|
|
ProjectGroupLink.expired.destroy_all
|
|
end
|
|
end
|