port5432
port5432

Reputation: 6403

Removing ActiveAdmin resources

I'm on Rails 3.1.1, Ruby 1.9.2 and the latest gem (pulled from github).

It's easy enough to add a resource to the excellent ActiveAdmin gem for Ruby. I can see you can also remove a resource by deleting the relevant .rb file from app/admin.

I can't find anything in the documentation about it, but does anyone know is there another way the remove resources... or is deleting the ActiveAdmin resource file the correct way?

Upvotes: 8

Views: 7705

Answers (3)

abhi-axis
abhi-axis

Reputation: 149

You can also use

rails destroy active_admin:resource [ModelName]

to remove resource from ActiveAdmin.

Upvotes: 7

forgotpw1
forgotpw1

Reputation: 151

To add to Thomas Watson's answer, you also need to clean up references to the resource in your routes.rb file.

Upvotes: 5

Thomas Watson
Thomas Watson

Reputation: 6617

Yes, deleting the respective resource file under app/admin is the correct approach :)

Upvotes: 19

Related Questions