I need to redirect any Authenticated user to a specific page if they do not satisfy a condition.
I have implemented a base controller from which all controllers inherit. In its OnActionExecuting override I plan to perform my test for the condition and redirect to the specific action if the condition is not met.
Is this the most sensible way to perform this operation?