You can always force an action indexto be redirected to the singleton resource you want. Although this is not an ideal solution, I have used it in the past. Something like that:
ActiveAdmin.register Setting, as: 'Setting' do
actions :all, only: [:show, :edit, :update, :index]
controller do
def index
redirect_to resource_path(Setting.first)
end
end
end
source
share