Pavel Babin
Pavel Babin
There is wrong ordering of routes. For example - there is ordering in the resource I've set: 1) `GET users/` 2) `GET users/:id` 3) `POST users/` 4) `POST users/:id/restore` 5)...
I think it would be good to add to `@ignored_attributes` on `Audited` module attributes `deleted_at` and `deleted_on` by default. Because it usually used by "paranoid" deletion gems like [paranoia](https://github.com/rubysherpas/paranoia). These...
It would be great to be able to provide custom options for entity exposure like: ``` expose :name, custom: { key: 'value' } ``` Not only option named `custom` but...