32 lines
590 B
PHP
32 lines
590 B
PHP
<?php
|
|
|
|
namespace App\Services\AuditTrail;
|
|
|
|
final class Activity
|
|
{
|
|
// studies
|
|
public const int Study_Open = 101;
|
|
|
|
public const int Study_Metadata_View = 102;
|
|
|
|
public const int Study_Metadata_Edit = 103;
|
|
|
|
public const int Study_History_View = 104;
|
|
|
|
public const int Study_History_Update = 105;
|
|
|
|
// report
|
|
|
|
public const int Report_Save = 201;
|
|
|
|
public const int Report_Delete = 202;
|
|
|
|
public const int Report_Finalize = 203;
|
|
|
|
public const int User_Login = 301;
|
|
|
|
public const int User_Failed_Login = 302;
|
|
|
|
public const int User_Logout = 303;
|
|
}
|