This commit is contained in:
2020-11-27 16:14:14 +00:00
parent 066f8eec19
commit 945de40c16
6 changed files with 26 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
using System.Collections.Generic;
namespace AyaNova.Api.ControllerHelpers
{
internal static class ImportModeFromContext
{
internal static bool ImportMode(IDictionary<object, object> HttpContextItems)
{
return HttpContextItems["AY_IMPORT_MODE"] != null;
}
}
}//eons