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.
当用户注册到 liferay 门户时,如何将用户自动分配给组织?
您可以自动将新用户分配给站点、角色和用户组,但不能自动分配给组织。无论如何,只需几行代码,肯定有很多方法可以实现您想要的。
例如,您可以开发一个覆盖服务addUserWithWorkflow方法的钩子插件,这样您就可以在调用之前UserLocalService将新的组织 ID 添加到参数中。organizationIdssuper.addUserWithWorkflow(...)
addUserWithWorkflow
UserLocalService
organizationIds
super.addUserWithWorkflow(...)
希望能帮助到你!