debian-mirror-gitlab/app/workers/authorized_projects_worker.rb

19 lines
479 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
class AuthorizedProjectsWorker
2018-03-17 18:26:18 +05:30
include ApplicationWorker
2018-03-27 19:54:05 +05:30
prepend WaitableWorker
2017-08-17 22:00:37 +05:30
2018-10-15 14:42:47 +05:30
# This is a workaround for a Ruby 2.3.7 bug. rspec-mocks cannot restore the
# visibility of prepended modules. See https://github.com/rspec/rspec-mocks/issues/1231
# for more details.
if Rails.env.test?
def self.bulk_perform_and_wait(args_list, timeout: 10)
end
end
2018-03-27 19:54:05 +05:30
def perform(user_id)
2017-08-17 22:00:37 +05:30
user = User.find_by(id: user_id)
user&.refresh_authorized_projects
end
end