No release in over 3 years
Low commit activity in last 3 years
A poor implementation of custom actions of rails admin to use discard gem.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 1.0
~> 5.2.3
 Project Readme

RailsAdminDiscard

A poor implementation of custom actions of rails admin to use discard gem.

Usage

In your rails_admin.rb

  config.actions do
    discard
  end

You may need to use in specific models:

  config.actions do
    discard do
      only [YourModel]
    end
  end

if you want to remove delete:

  config.actions do
    delete do
      except [YourModel]
    end
  end

Installation

Add this line to your application's Gemfile:

gem 'rails_admin_discard'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rails_admin_discard

Contributing

Contribution directions go here.

License

The gem is available as open source under the terms of the MIT License.