This commit is contained in:
37
server/biz/SockEvent.cs
Normal file
37
server/biz/SockEvent.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
namespace Sockeye.Biz
|
||||
{
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// All Sockeye event types
|
||||
/// Used for central biz logging and notification
|
||||
/// </summary>
|
||||
public enum SockEvent : int
|
||||
{
|
||||
//common events
|
||||
Deleted = 0,
|
||||
Created = 1,
|
||||
Retrieved = 2,
|
||||
Modified = 3,
|
||||
|
||||
//specific events
|
||||
AttachmentCreate = 4,
|
||||
AttachmentDelete = 5,
|
||||
AttachmentDownload = 6,
|
||||
|
||||
LicenseFetch = 7,
|
||||
LicenseTrialRequest = 8,
|
||||
ServerStateChange = 9,
|
||||
SeedDatabase = 10,
|
||||
AttachmentModified = 11,
|
||||
EraseAllData = 12,
|
||||
ResetSerial = 13,
|
||||
UtilityFileDownload = 14,
|
||||
DirectSMTP = 15//NotifyEventDirectSMTPMessage key can work for this too
|
||||
|
||||
//NEW ITEMS REQUIRE translation KEYS and update CLIENT sock-history.vue code in eventypes list and translation fetcher
|
||||
|
||||
}
|
||||
|
||||
|
||||
}//eons
|
||||
Reference in New Issue
Block a user