Reputation: 151
As we know, Liferay has the inbuilt functionality for creating users. But i want to have an workflow for creating users which involves approval process. I mean, user will be created by admin but it should be approved by another authorized person, then only the user account will be active.
Is there any way to customize the user creation process in Liferay?
Thanks in Advance.
Upvotes: 2
Views: 3292
Reputation: 747
As far as I know you have 3 methods to achieve it someway:
The first two methods would include developing what is called a Liferay Hook. This is described in the Liferay Wiki and Documentation
Upvotes: 2
Reputation: 1402
You could use a Model Listener hook to intercept the user creation process and deactivate the newly created user. Check this link for more information on model listeners in Liferay.
Then you could use the Liferay permissioning system to assign Deactivate/Restore rights to a certain role.
Upvotes: 1
Reputation: 1
Take a look at TLCG Information Server at http://www.thelondonconsulting.com/products/information-server . You can use BPM to create a process with human tasks and then upload user to LDAP. Liferay will import only created users in LDAP.
Upvotes: 0