Skip to content

Instantly share code, notes, and snippets.

@MichaelCPell
Created February 24, 2016 15:35
Show Gist options
  • Save MichaelCPell/1ca86daf17b1493e620b to your computer and use it in GitHub Desktop.
Save MichaelCPell/1ca86daf17b1493e620b to your computer and use it in GitHub Desktop.
before_save do
if wiki.private == true
unless wiki.user.premium?
wiki.errors.add(:private, "Must be premium to make private wikis")
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment