Created
August 4, 2009 22:28
-
-
Save thoughtbot/162331 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Admin::ArticlesController < InheritedResources::Base | |
before_filter :deny_access, :unless => :draft_and_admin? | |
actions :show | |
protected | |
def draft_and_admin? | |
Article.find(params[:id]).draft? && current_user.admin? | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment