I need to get the current culture in a controller in a custom module; I know how to get it from a razor view:
@{
var currentCulture = WorkContext.CurrentCulture;
}
but in the controller I have no access to the WorkContext and I can't find anything similar (I tried HttpContext but there is no CurrentCulture method).