just adding ActiveAdmin to my app, i got a problem using show/edit/destroy action cause my link doesn't point to ID but to users name (in order to be more readable for user).

ActiveAdmin correctly create my link like :

edit link : http://localhost:3000/admin/users/paul/edit (where paul is the user name)

in that case i get : Couldn't find User with ID=paul

cause of course Paul is not the id but the user name.

How can i custom ActiveAdmin to use find_by_name(params[:id]) like in my application for all the action show/edit/delete.

In other model i got a so called "SID" wich is a generated salted ID and i would like to use also the find_by_sid(params[:id]) as well for other models.

Thank's a lot.

Cheers..

link|improve this question
Check out this related question, the accepted answer is also the solution to your problem: stackoverflow.com/questions/7684644/… – rdvdijk Oct 9 '11 at 21:50
I'll try that tonight, it is effectivelly due to the to_param command. I keep you on touch after a try. – repié Oct 10 '11 at 6:37
feedback

1 Answer

up vote 2 down vote accepted

This will do the job in the app/admin/user.rb :

ActiveAdmin.register User do
    before_filter :only => [:show, :edit, :update, :destroy] do
        @user = User.find_by_name(params[:id])
      end
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.