Sha256: 303a5a7405df9f796f183b28c933d5a75677570f88ae56617f0c1b77b1712609

Contents?: true

Size: 446 Bytes

Versions: 10

Compression:

Stored size: 446 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

10 entries across 10 versions & 1 rubygems

Version Path
arpa-0.2.0 lib/arpa/services/profiles/profile_manager_updater.rb
arpa-0.1.0 lib/arpa/services/profiles/profile_manager_updater.rb
arpa-0.0.9 lib/arpa/services/profiles/profile_manager_updater.rb
arpa-0.0.8 lib/arpa/services/profiles/profile_manager_updater.rb
arpa-0.0.7 lib/arpa/services/profiles/profile_manager_updater.rb
arpa-0.0.6 lib/arpa/services/profiles/profile_manager_updater.rb
arpa-0.0.5 lib/arpa/services/profiles/profile_manager_updater.rb
arpa-0.0.4 lib/arpa/services/profiles/profile_manager_updater.rb
arpa-0.0.3 lib/arpa/services/profiles/profile_manager_updater.rb
arpa-0.0.2 lib/arpa/services/profiles/profile_manager_updater.rb