Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要为文档设置特定的 ACL,这些 ACL 的创建方式如下:
PREFIX + ID
现在我需要将 X ACL 设置为 Y 文档,但我还没有找到如何查询或检索任何 ACL 的方法,我在这里遗漏了什么吗?
批量更新 ACL 可以通过以下方式通过 DQL 完成
update doc_type objects [(ALL)] set acl_name='YOUR_ACL' set acl_domain='YOUR_ACL_DOMAIN' where .... 你的资格
希望这可以帮助