rafaels88/pinfluence

View on GitHub
apps/admin/controllers/people/destroy.rb

Summary

Maintainability
A
15 mins
Test Coverage
module Admin::Controllers::People
  class Destroy
    include Admin::Action

    def call(params)
      DestroyPerson.call(params[:id])
    rescue StandardError => e
      flash[:error] = e.message
    ensure
      redirect_to routes.people_path
    end
  end
end