10 lines
213 B
Ruby
10 lines
213 B
Ruby
|
class UserProjectAccessChangedService
|
||
|
def initialize(user_ids)
|
||
|
@user_ids = Array.wrap(user_ids)
|
||
|
end
|
||
|
|
||
|
def execute
|
||
|
AuthorizedProjectsWorker.bulk_perform_and_wait(@user_ids.map { |id| [id] })
|
||
|
end
|
||
|
end
|