class Arpa::Services::Profiles::ProfileManagerCreator

Public Instance Methods

create(params, callback) click to toggle source
# File lib/arpa/services/profiles/profile_manager_creator.rb, line 7
def create(params, callback)
  manager_action callback do
    profile_creator.create(params[:profile])
  end
end

Private Instance Methods

profile_creator() click to toggle source
# File lib/arpa/services/profiles/profile_manager_creator.rb, line 15
def profile_creator
  @profile_creator ||= Arpa::Services::Profiles::Create::ProfileCreator.new
end