changeset 177:784d81e32366

Quitando la opción de proponer para esta versión
author nelopauselli
date Mon, 08 Aug 2011 10:22:22 -0300
parents c58d26b15759
children 33e57fd1a6c9
files Agendas/trunk/src/Agendas.Web/Controllers/EventoController.cs Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Web/Controllers/EventoController.cs	Mon Aug 08 10:13:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Controllers/EventoController.cs	Mon Aug 08 10:22:22 2011 -0300
@@ -188,6 +188,7 @@
 		[Authorize]
 		public ActionResult Proponer()
 		{
+			throw new NotImplementedException();
 			var model = new PropuestaNewModel();
             return View("Defaulteditor", model);
 		}
@@ -196,6 +197,7 @@
 		[Authorize]
 		public ActionResult Proponer(PropuestaNewModel model)
 		{
+			throw new NotImplementedException();
 			if (ModelState.IsValid)
 			{
 				var agenda = AgendaFactory.GetAgenda();
--- a/Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml	Mon Aug 08 10:13:46 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Views/Evento/Index.cshtml	Mon Aug 08 10:22:22 2011 -0300
@@ -69,5 +69,4 @@
 </div>
 <div class="buttons">
 	@Html.ActionLink("Nuevo", "Nuevo")
-	@Html.ActionLink("Proponer", "Proponer")
 </div>