Abrir app/controllers/topics_controller.rb
y observar el método create
format.html { redirect_to @topic, notice: 'El tema se ha creado correctamente.' }
y cambia @topic
por topics_path
así:
format.html { redirect_to topics_path, notice: 'El tema se ha creado correctamente.' }
para que el archivo luzca así:
def create
@topic = Topic.new(topic_params)
respond_to do |format|
if @topic.save
format.html { redirect_to topics_path, notice: 'El tema se ha creado correctamente.' }
format.json { render action: 'show', status: :created, location: @topic }
else
format.html { render action: 'new' }
format.json { render json: @topic.errors, status: :unprocessable_entity }
end
end
end
En el mismo archivo, encuentra el método update.
format.html { redirect_to @topic, notice: 'El tema se ha actualizado correctamente.' }
y cambia @topic
por topics_path
así:
format.html { redirect_to topics_path, notice: 'El tema se ha actualizado correctamente.' }