add_members_job.rb 217 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 class AddMembersJob < Struct.new(:people_ids, :profile_id, :locale) def perform Noosfero.with_locale(locale) do profile = Profile.find(profile_id) profile.add_members people_ids end end end