From 80d3b64a5f047161e44b2a31687d679e9e321409 Mon Sep 17 00:00:00 2001 From: Mole Date: Tue, 13 Oct 2020 14:34:10 +0200 Subject: [PATCH] Change summary of UmbracoUserTimeoutFilterAttribute to more accurately describe what it does now --- .../Filters/UmbracoUserTimeoutFilterAttribute.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.Common/Filters/UmbracoUserTimeoutFilterAttribute.cs b/src/Umbraco.Web.Common/Filters/UmbracoUserTimeoutFilterAttribute.cs index a5bf24335b..2c11b06839 100644 --- a/src/Umbraco.Web.Common/Filters/UmbracoUserTimeoutFilterAttribute.cs +++ b/src/Umbraco.Web.Common/Filters/UmbracoUserTimeoutFilterAttribute.cs @@ -6,8 +6,8 @@ using Umbraco.Extensions; namespace Umbraco.Web.Common.Filters { /// - /// This will check if the request is authenticated and if there's an auth ticket present we will - /// add a custom header to the response indicating how many seconds are remaining for the current + /// This will check if the user making the request is authenticated and if there's an auth ticket tied to the user + /// we will add a custom header to the response indicating how many seconds are remaining for the /// user's session. This allows us to keep track of a user's session effectively in the back office. /// public class UmbracoUserTimeoutFilterAttribute : TypeFilterAttribute