Giter Site home page Giter Site logo

Comments (2)

cpjk avatar cpjk commented on May 22, 2024

I would do something like

def can?(%User{ id: user_id_1 }, action, %Post{ user_id: user_id_2 }) 
  when action in [:show] do
  user_id_1 == user_id_2
end

from canary.

acrolink avatar acrolink commented on May 22, 2024

Thanks @cpjk

I have tried your suggestion but it does not work. A user can still view all posts (those who belong to him and those belonging to other users), Here is the code:

defmodule Entre.Abilities do
  alias Entre.Accounts.User
  alias Entre.Content.Post
  defimpl Canada.Can, for: User do
    def can?(%User{ id: user_id }, action, %Post{ user_id: post_user_id })
    when action in [:show], do:
    user_id == post_user_id

    def can?(%User{ id: user_id }, _, _), do: false
  end
end

I have a question, how does the code understand that it is the show action that is being called? What do I need to write inside the show action in PostsController ?

Anyway, this is the PostController :

defmodule Entre.Web.PostController do
  use Entre.Web, :controller
  alias Entre.Content

  plug :load_and_authorize_resource, model: Content.Post

# other actions ..

  def show(conn, %{"id" => id}) do
    post = Content.get_post!(id)
    render(conn, "show.html", post: post)
  end

# other actions ..
end

from canary.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.