administrate
administrate copied to clipboard
A Rails engine that helps you put together a super-flexible admin dashboard.
* What were you trying to do? I have a handful of `Role`s in my db like `Administrator`, `Author`, etc. A `User` `has_many` `Role`s. I don't want users of the...
Fixes https://github.com/thoughtbot/administrate/issues/2091
https://snyk.io/test/npm/jquery/1.12.4 After fresh rails install: `/assets/administrate/application.debug...js` included version 1.12.4 of jquery
The Ruby 2.6 & 2.7 tests seem to have suddenly become flaky:  I saw some failures like that in a couple of my PRs, that usually went away if...
* I would like the same admin interface would be exposed (optionally) as a JSON REST API — with the same reasonable auth options. Bonus: OpenAPI (swagger) integration. * Adding...
**What would you like to be able to do?** I was trying to find an option to disable sorting by a specific column (virtual attribute) **How could we go about...
When https://github.com/thoughtbot/administrate/pull/920 was merged, it broke apps that depended on the old behaviour. These are two reports on this issue: ### Report by @wkirby in https://github.com/thoughtbot/administrate/pull/920#issuecomment-599722598 This PR appears to...
* What were you trying to do? Displaying (small display with `display_resource`) a resource for which there is no dashboard. * What did you end up with (logs, or, even...
Hi, I am using STI for authentication, so a base `User`, sub-classes `Client`, `Host` and `Administrator`. One model which uses these classes is `Appointment` which is defined like below: ```ruby...