コード例 #1
0
ファイル: DinnerController.cs プロジェクト: jladuval/MyPlace
        public ActionResult Create()
        {
            if (User.TryGetPrincipal().IsVerified)
            {
                return(View(
                           "Create",
                           new CreateDinnerModel
                {
                    CurrentLocation = _profileReader.GetLocationString(User.TryGetPrincipal().UserId)
                }));
            }

            TempData["ErrorMessage"] = "You have to verify your email before creating a dinner.";
            return(RedirectToAction("Index", "DinnerList"));
        }