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..