Rails 3:处理隐私功能
我的应用程序的一部分负责将所有用户操作写入提要。但是,我想允许用户控制他的隐私功能(停止发送到提要,仅发送一些操作等)。
最好的方法是什么?我应该使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想您可以使用 CanCan,但在我看来,使用简单的条件语句会简单得多。
我会做一些类似的事情:
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: