mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 13:44:47 +02:00
- Remove `Que::Mailer` (#895) - Extract controllers - Extract translations - Convert HAML to ERB - Add mailer preview - Improve UI - Remove unused routes - Add tests
13 lines
No EOL
206 B
Ruby
13 lines
No EOL
206 B
Ruby
module Admin
|
|
module Invoices
|
|
class DeliveryController < BaseController
|
|
include Deliverable
|
|
|
|
private
|
|
|
|
def redirect_url
|
|
admin_invoice_path(@invoice)
|
|
end
|
|
end
|
|
end
|
|
end |