mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 05:34:46 +02:00
13 lines
207 B
Ruby
13 lines
207 B
Ruby
module Admin
|
|
module Invoices
|
|
class DeliveryController < BaseController
|
|
include Deliverable
|
|
|
|
private
|
|
|
|
def redirect_url
|
|
admin_invoice_path(@invoice)
|
|
end
|
|
end
|
|
end
|
|
end
|