10 lines
242 B
PHP
10 lines
242 B
PHP
<?php
|
|
|
|
namespace App\Support\Audit;
|
|
|
|
final class AuditActions
|
|
{
|
|
public const TENANT_ONBOARDING_CREDENTIALS_UPDATED = 'tenant.onboarding.credentials.updated';
|
|
public const TENANT_ONBOARDING_COMPLETED = 'tenant.onboarding.completed';
|
|
}
|