Files
nairobi/app/components/shared/order_links_component.rb
Javi Martín 5137913565 Move order links partial to a component
This way the changes we have in mind we'll be easier to implement.
2021-06-28 00:08:19 +02:00

9 lines
256 B
Ruby

class Shared::OrderLinksComponent < ApplicationComponent
attr_reader :i18n_namespace
delegate :current_path_with_query_params, :current_order, :valid_orders, to: :helpers
def initialize(i18n_namespace)
@i18n_namespace = i18n_namespace
end
end