• Stars
    star
    29
  • Rank 831,345 (Top 17 %)
  • Language
    Ruby
  • License
    MIT License
  • Created about 9 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

This gem extends ActiveAdmin so that batch restore and batch archive actions will be available in resource index page. Also 'All' and 'Archived' scope will be available for resource index page. 'All' scope will show non archived resources and 'Archived' scope will show deleted or archived resources.

active_admin_paranoia

This gem extends ActiveAdmin so that batch restore and batch archive actions will be available in resource index page. Also 'All' and 'Archived' scope will be available for resource index page. 'All' scope will show non archived resources and 'Archived' scope will show deleted or archived resources.

Installation

This gem assumes that you have already configured paranoia for you desire resource. Add this line to your application's Gemfile:

gem "active_admin_paranoia" , '~> 1.0.11'

And then execute:

$ bundle

Usages

ActiveAdmin.register Post do
  active_admin_paranoia
end