...
Custom Integration require a new release as a new class must be added to the MarineLMS.CustomerService.Impl project that inherits from 'CustomerUserIntegration'. There are 4 2 methods that are able to be implemented so they are called during the import to be used to run custom code:
- DoInitialOrgWork() - Any code that needs to be run before the batcher get's called. This can be used to setup special organization specific logic.
- DoInitialUserWork() - Any code that needs to be run with the uow before it starts creating users.DoPostUserWork() - Any code that needs to be run after the uow creates a user, before releasing the uow.
Example of a configured org using custom integration:
...