You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
under public class SeoMetaSettingsHandler and its related
private readonly IActionContextAccessor _actionContextAccessor;
private readonly IHttpContextAccessor _httpContextAccessor;
private readonly IUrlHelperFactory _urlHelperFactory;
Describe the solution you'd like
move
private readonly IActionContextAccessor _actionContextAccessor;
private readonly IHttpContextAccessor _httpContextAccessor;
private readonly IUrlHelperFactory _urlHelperFactory;
and
GetActionContextAsync
to a topService, because many modules will use the same logic.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
under public class SeoMetaSettingsHandler and its related
private readonly IActionContextAccessor _actionContextAccessor;
private readonly IHttpContextAccessor _httpContextAccessor;
private readonly IUrlHelperFactory _urlHelperFactory;
Describe the solution you'd like
move
private readonly IActionContextAccessor _actionContextAccessor;
private readonly IHttpContextAccessor _httpContextAccessor;
private readonly IUrlHelperFactory _urlHelperFactory;
and
GetActionContextAsync
to a topService, because many modules will use the same logic.
The text was updated successfully, but these errors were encountered: