public ActionResult Login(LoginViewModel model) { var db = new TbCmsContext(); var loginViewModel = _rep.CheckLogin(model); if (loginViewModel.IsSuccess) { // ログイン成功. // セッションに必要な情報を設定. Session["IsAdministrator"] = true; // TODO:暫定. Session["IsCreateNews"] = true; // TODO:暫定. Session["IsCreateContents"] = true; // TODO:暫定. Session["LoginId"] = loginViewModel.system_user_id; return(Redirect("../Menu/Menu")); } else { return(View(loginViewModel)); } }