Skip to content

Instantly share code, notes, and snippets.

@mfifth
Created May 20, 2016 00:22
Show Gist options
  • Select an option

  • Save mfifth/b933d5981aeaac9bb43a83b2c1850470 to your computer and use it in GitHub Desktop.

Select an option

Save mfifth/b933d5981aeaac9bb43a83b2c1850470 to your computer and use it in GitHub Desktop.
module ApplicationHelper
def admins_only(&block)
block.call if current_user.try(:admin?)
end
def author_only(&block)
block.call if current_user == @topic.author.email
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment