internetee-registry/app/controllers/registrar/invoices/delivery_controller.rb
2021-09-09 09:19:09 +03:00

13 lines
214 B
Ruby

class Registrar
module Invoices
class DeliveryController < BaseController
include Deliverable
private
def redirect_url
registrar_invoice_path(@invoice)
end
end
end
end