bluelemons/diputados

View on GitHub
app/controllers/backend/pases_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Backend::PasesController < Backend::AuthenticatedApplicationController
  belongs_to :nota

  def create
    create! { [:backend, @pase.expediente] }
  end

  def update
    update! { [:backend, @pase.expediente] }
  end

  def destroy
    destroy! { [:backend, @pase.expediente] }
  end

end