Rails 3:处理隐私功能

发布于 2024-10-11 08:35:02 字数 130 浏览 1 评论 0原文

我的应用程序的一部分负责将所有用户操作写入提要。但是,我想允许用户控制他的隐私功能(停止发送到提要,仅发送一些操作等)。

最好的方法是什么?我应该使用 Cancan 或类似的东西并为不同的隐私选项分配角色吗?

谢谢

Part of my app is responsible for writing to a feed all the user actions. However, I'd like to allow the user to control his privacy features (stop sending to the feed, only send some actions, etc).

What is the best way to do that? Shall I use Cancan or something similar and give roles to different privacy options?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蛮可爱 2024-10-18 08:35:02

我想您可以使用 CanCan,但在我看来,使用简单的条件语句会简单得多。

我会做一些类似的事情:

def write_to_feed(user, action)
  unless user.private?
    unless user.private_action? action
      # Write to feed
    end
  end
end

write_to_feed @user, :post
write_to_feed @user, :comment

I suppose you could use CanCan but, in my opinion, using simple conditional statements would be much simpler.

I would do something along the lines of:

def write_to_feed(user, action)
  unless user.private?
    unless user.private_action? action
      # Write to feed
    end
  end
end

write_to_feed @user, :post
write_to_feed @user, :comment
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文