Replace default action "index" with another one?

Hi all

Is there a way to make Rails load another action than “index” when no
action is specified? Something like

MyController
default_action :some_action

def some_action

end
end

Thanks for help :slight_smile:

Josh

PS: I know the trick with just calling and rendering another action
within index() already… It’s not what I’m looking for. :wink: