mirror of
https://github.com/internetee/registry.git
synced 2025-07-29 14:06:21 +02:00
13 lines
214 B
Ruby
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
|