thadico-platform/org-module

Module for synchronized users

v1.0.41 2024-10-10 09:31 UTC

This package is auto-updated.

Last update: 2024-10-11 02:16:47 UTC


README

You can install this package via composer using this command:

composer require thadico-platform/org-module

Register event providers:

\KeyHoang\OrgModule\Providers\EventServiceProvider::class

Using this schedule:

$schedule->command(SyncUserCommand::class)->daily();
$schedule->command(SyncDepartmentCommand::class)->daily();

Using this RabbitMQJob:

'sync-user' => SyncUserQueue::class . '@handle'