NuGetGallery.UsersController.Edit C# (CSharp) Method

Edit() private method

private Edit ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public virtual ActionResult Edit()
        {
            var user = userService.FindByUsername(currentUser.Identity.Name);
            var profiles = profilesService.GetUserProfiles(user);
            var twitter = profiles.Where(x => x.Name == SiteProfileConstants.Twitter).Select(p => p.Url.Replace(SiteProfileConstants.TwitterProfilePrefix, string.Empty)).FirstOrDefault();
            var github = profiles.Where(x => x.Name == SiteProfileConstants.Github).Select(p => p.Url.Replace(SiteProfileConstants.GithubProfilePrefix, string.Empty)).FirstOrDefault();
            var codeplex = profiles.Where(x => x.Name == SiteProfileConstants.Codeplex).Select(p => p.Url.Replace(SiteProfileConstants.CodeplexProfilePrefix, string.Empty)).FirstOrDefault();
            var stackExchange = profiles.Where(x => x.Name == SiteProfileConstants.StackExchange).Select(p => p.Url).FirstOrDefault();
            var homepage = profiles.Where(x => x.Name == SiteProfileConstants.Homepage).Select(p => p.Url).FirstOrDefault();
            var blogUrl = profiles.Where(x => x.Name == SiteProfileConstants.Blog).Select(p => p.Url).FirstOrDefault();
            var packagesRepo = profiles.Where(x => x.Name == SiteProfileConstants.PackagesRepository).Select(p => p.Url).FirstOrDefault();
            var packagesRepoAuto = profiles.Where(x => x.Name == SiteProfileConstants.PackagesRepositoryAuto).Select(p => p.Url).FirstOrDefault();

            var model = new EditProfileViewModel
            {
                EmailAddress = user.EmailAddress,
                EmailAllowed = user.EmailAllowed,
                EmailAllModerationNotifications = user.EmailAllModerationNotifications,
                PendingNewEmailAddress = user.UnconfirmedEmailAddress,
                TwitterUserName = twitter,
                GithubUserName = github,
                CodeplexUserName = codeplex,
                StackExchangeUrl = stackExchange,
                HomepageUrl = homepage,
                BlogUrl = blogUrl,
                PackagesRepository = packagesRepo,
                PackagesRepositoryAuto = packagesRepoAuto
            };
            return View("~/Views/Users/Edit.cshtml", model);
        }

Same methods

UsersController::Edit ( EditProfileViewModel profile ) : System.Web.Mvc.ActionResult