Cita:
Iniciado por pzin Pues ahí está el error. Las rutas están bien, pero tienes que indicar también el controlador para que luego puedas usar
tipocontenido_path
.
Código Ruby:
Ver originalget "tipocontenidos/index" => "tipocontenido#index"
Debería de funcionar así.
Si luego del cambio ejecutas
rake routes
verás que efectivamente existe
tipocontenido_path
. Debería de salir algo así:
Código BASH:
Ver originaltipocontenido GET /tipocontenido/index(.:format) tipocontenido#index
lo hice, pero ahora me arroja en la vista:
Código:
Routing Error
uninitialized constant TipocontenidoController
Try running rake routes for more information on available routes.
y lo otro si parece estar bien:
Código:
$ rake routes
index_index GET /index/index(.:format) index#index
index_registro GET /index/registro(.:format) index#registro
tipocontenidos_index GET /tipocontenidos/index(.:format) tipocontenido#index
root / index#index