class Arpa::Services::Roles::RoleManagerUpdater

Public Instance Methods

update(params, callback) click to toggle source
# File lib/arpa/services/roles/role_manager_updater.rb, line 7
def update(params, callback)
  manager_action callback do
    role_updater.update(params[:role])
  end
end

Private Instance Methods

role_updater() click to toggle source
# File lib/arpa/services/roles/role_manager_updater.rb, line 15
def role_updater
  @role_updater ||= Arpa::Services::Roles::Update::RoleUpdater.new
end