Brandy.Security.Web.AccountController.GetReturnUrl C# (CSharp) Method

GetReturnUrl() private method

private GetReturnUrl ( string returnUrl ) : string
returnUrl string
return string
        private string GetReturnUrl(string returnUrl)
        {
            if (Url.IsLocalUrl(returnUrl))
                return returnUrl;

            return Url.Action("Index", "Home");
        }