在我的应用中,我有一个名为User的has_one Talent模型。
在CanCan中我可以拥有这种能力:
class Ability
include CanCan::Ability
def initialize(user)
if user.nil?
can :read, User
can :read, Talent, is_public?: true
else
can :read, Talent, is_public?: true
end
我的页面正在由ProfilesController#show呈现。像这样:
class ProfilesController < ApplicationController
before_action :check_ability, except: [:show]
def show
@user = User.find(params[:id])
authorize! :read, @user
authorize! :read, @user.talent
if current_user
sent_connections = current_user.sent_connections
connections = sent_connections + current_user.all_connections
@is_connected = !(connections.select { |c| c.user.id == @user.id }.empty?)
end
@top_5_photos = @user.top_5_photos
end
好吧。我试图渲染一个配置文件,方法:is_public返回false。但是页面显示正确,而我期望的是由于以下原因用户无法看到页面:
can :read, Talent, is_public?: true
我在这里缺少什么?
答案 0 :(得分:2)
如果我没记错的话,
can :read, Talent, is_public?: true
上面的 ^ is_public?
应该是Cancancan的属性。
但是因为is_public?
是自定义方法,那么您可以尝试以下方法吗?
can :read, Talent do |talent|
talent.is_public?
end