I have a Rails3 application with Article model.
When admins are logged in, they can view articles that are "not authorized" by simply going to the article/show method:
if !@article.is_authorized and !user_signed_in?
raise ActionController::RoutingError.new('Not Found')
end
I would like to cache articles from the moment they are authorized. How do I prevent them from being cached while the admins are reviewing them?
How can I place a code like the following in the action?
if @article.is_authorized
cache_action
or cache_fragment
or whatever