Display and forms seem to work
authorNeil Smith <neil.git@njae.me.uk>
Mon, 6 Jan 2014 11:40:44 +0000 (11:40 +0000)
committerNeil Smith <neil.git@njae.me.uk>
Mon, 6 Jan 2014 11:40:44 +0000 (11:40 +0000)
app/views/feed/index.html.erb
app/views/feed/show.html.erb
config/routes.rb

index 8ffe63884981f2de648a02e2731f076405eb7033..9bd98c67e36fa8a61fc4bfb021749f7e50bc4a6c 100644 (file)
@@ -1,6 +1,6 @@
 <h1>Feeds available</h1>
 
-<% form_tag :action => 'update' do %>
+<%= form_tag update_path do %>
   <p>Set feed <%= text_field_tag :feed_name, '', :size => 20 %>
     to include <%= text_field_tag :title, '', :size => 30 %>
     containing  <%= text_field_tag :description, '', :size => 50 %>
index a491835a6b4bdbcb9f5aff4798d7dc6a759d7c27..789debd9573fc0f0edf7fecafd2dc46895e429e6 100644 (file)
@@ -1,7 +1,7 @@
 <h1>Contents of feed <%= h params[:feed_name] %></h1>
 <p><%= link_to("List of all feeds", index_path) %></p>
 
-<% form_tag :action => 'update' do %>
+<%= form_tag update_path do %>
   <p>Set feed <%= text_field_tag :feed_name, h(params[:feed_name]), :size => 20 %>
     to include <%= text_field_tag :title, '', :size => 30 %>
     containing  <%= text_field_tag :description, '', :size => 50 %>
index 4b69b1931435b94c709684c8ad730b920074ac89..8b7c093134888028210fb545f09d55994980fe03 100644 (file)
@@ -8,7 +8,7 @@ Feedcatcher::Application.routes.draw do
   
   get 'index', to: 'feed#index', as: :index
   get ':feed_name', to: 'feed#show', as: :feed
-  post '*ignored', to: 'feed#update', as: :update
+  post '', to: 'feed#update', as: :update
 
   # Example of regular route:
   #   get 'products/:id' => 'catalog#view'