Skip to content

Instantly share code, notes, and snippets.

@francium-lupe
Last active September 18, 2023 14:27
Show Gist options
  • Save francium-lupe/b2ae0dcaef833c598e18acc12d11b19f to your computer and use it in GitHub Desktop.
Save francium-lupe/b2ae0dcaef833c598e18acc12d11b19f to your computer and use it in GitHub Desktop.
authorization fundamentals - venn diagram
def update_post(user, post)
if not user.admin?
raise Forbidden, "you must be an admin to update this post"
end
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment