diff --git a/src/Business/Grand.Business.System/Services/Installation/InstallDataActivityLogTypes.cs b/src/Business/Grand.Business.System/Services/Installation/InstallDataActivityLogTypes.cs index 8845d70db..d0697fc33 100644 --- a/src/Business/Grand.Business.System/Services/Installation/InstallDataActivityLogTypes.cs +++ b/src/Business/Grand.Business.System/Services/Installation/InstallDataActivityLogTypes.cs @@ -601,6 +601,24 @@ protected virtual async Task InstallActivityLogTypes() Enabled = true, Name = "Delete knowledgebase category" }, + new ActivityLogType + { + SystemKeyword = "AddNewBrand", + Enabled = true, + Name = "Add a new brand" + }, + new ActivityLogType + { + SystemKeyword = "EditBrand", + Enabled = true, + Name = "Edit a brand" + }, + new ActivityLogType + { + SystemKeyword = "DeleteBrand", + Enabled = true, + Name = "Delete a brand" + }, }; await _activityLogTypeRepository.InsertAsync(activityLogTypes); }