How can I override an engine action with nothingness? For instance, I want all my users to register themselves, so I want to remove the ability to create a new user.
I tried def new end as well as undef new in my user_controller.rb, but in each case, Rails still tried to render the engine's new template, with some errors presumably due to the now-improperly-set up instance variable. In this case, I'm happy creating a fake new action that redirects to :action => 'home', but it seems like a general need people might have with engines. Jay Levitt _______________________________________________ engine-users mailing list [email protected] http://lists.rails-engines.org/listinfo.cgi/engine-users-rails-engines.org
