module SearchableConcern

Public Class Methods

included(base) click to toggle source
# File lib/searchable_routing_concern.rb, line 2
def self.included(base)
  base.instance_eval do
    concern :searchable do
      collection do
        get :feed
        get :filters
      end
    end
  end
end