diff --git a/src/Umbraco.Core/Services/IAuditService.cs b/src/Umbraco.Core/Services/IAuditService.cs index 4b803dc012..ffdbbcbe85 100644 --- a/src/Umbraco.Core/Services/IAuditService.cs +++ b/src/Umbraco.Core/Services/IAuditService.cs @@ -70,7 +70,11 @@ namespace Umbraco.Core.Services /// The identifier of the user affected by the audited event. /// Free-form details about the entity affected by the audited event. /// - /// The type of the audited event - must contain only alphanumeric chars, hyphens and at least one '/' defining categories + /// The type of the audited event - must contain only alphanumeric chars and hyphens with forward slashes separating categories. + /// + /// The eventType will generally be formatted like: {application}/{entity-type}/{category}/{sub-category} + /// Example: umbraco/user/sign-in/failed + /// /// /// Free-form details about the audited event. IAuditEntry Write(int performingUserId, string perfomingDetails, string performingIp, DateTime eventDate, int affectedUserId, string affectedDetails, string eventType, string eventDetails);