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-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
|