bodyguard icon indicating copy to clipboard operation
bodyguard copied to clipboard

Simple authorization conventions for Phoenix apps

Results 5 bodyguard issues
Sort by recently updated
recently updated
newest added

Executed `mix deps.update --all`. Resolves #81 Thank you for this great library!

A bunch of the deps have build warnings because of old syntax, etc.

In the readme in the Plugs section I see the following code: ```elixir defp get_post(conn, _) do assign(conn, :post, MyApp.Posts.get_post!(conn.params["id"])) end # Helper for the Authorize plug def extract_post(conn), do:...

Hi! I am thinking about about possibility to provide some extra context for permissions. Like not the just fact that user can do something but also **why**. Something like this:...

Hi, firstly, thanks for awesome work! I do like to expand the type definition of the action type a little. I use policies tided to the controller/action, and I do...