Mark Dickson

Results 3 issues of Mark Dickson

I have a custom ransacker: ```ruby ransacker :exact_merchandise_item_ids, type: :string do |parent| query = "(SELECT GROUP_CONCAT(DISTINCT order_items.item_id ORDER BY order_items.item_id ASC) FROM order_items WHERE order_items.order_id = orders.id)" Arel.sql(query) end ```...

In a RESTful API, you'll use the same path multiple times, but with a different REST verb. These will return the same endpoint: - `GET /orders` - `POST /orders` So...

feature request

In some circumstances, folks may have a habtm like so: Account has _and_belongs_to_many :users has_many :products User has _and_belongs_to_many :accounts In this case, you'd want the oauth provider attached to...