I want to soft delete(archive) records through the index view but the default action actually destroys the record completely rather than adding a timestamp deleted_at column.
Ive tried to override the link_to method to be sure that activeadmin isnt doing anything to the link but it had no effect on the outcome
link_to "Archive", admin_events_path(resource), method: :delete, confirm: "Are you sure?", class: "member_link delete_link"