That works, thanks.
Now my problem is that I need to do that for users, clippings, posts,
photos, ... everything. They are all written with before_filters that
list all the mutating actions in an :only list, so I have to gather
all those specific lists and copy them into my controllers, then edit
them. That's going to create so much fragility that I want to seek a
better solution if I can.
What I don't understand, and have not found with Google, is a
definitive statement about how filters behave between engines and the
app. I want to override the filters, so it feels like saying
"before_filter :login_required" in my copy of base_controller.rb (or
users_controller.rb) ought to fire the filter before :show and all the
other methods not mentioned in CE's :only list, but somehow the fact
that CE uses :only makes that trump instead.