RailsAdminDiscard
A poor implementation of custom actions of rails admin to use discard gem.
Usage
In your rails_admin.rb
config.actions do
discard
endYou may need to use in specific models:
config.actions do
discard do
only [YourModel]
end
endif you want to remove delete:
config.actions do
delete do
except [YourModel]
end
endInstallation
Add this line to your application's Gemfile:
gem 'rails_admin_discard'And then execute:
$ bundleOr install it yourself as:
$ gem install rails_admin_discardContributing
Contribution directions go here.
License
The gem is available as open source under the terms of the MIT License.