Sha256: 2929e022118456498eabef083ca4b631dcc35e107c520ab87172d10a87327967

Contents?: true

Size: 445 Bytes

Versions: 1

Compression:

Stored size: 445 Bytes

Contents

module Arpa
  module Services
    module Profiles
      class ProfileManagerUpdater
        include Arpa::Services::Base

        def update(params, callback)
          manager_action callback do
            profile_updater.update(params[:profile])
          end
        end

        private

        def profile_updater
          @profile_updater ||= Arpa::Services::Profiles::Update::ProfileUpdater.new
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
arpa-0.3.0 lib/arpa/services/profiles/profile_manager_updater.rb