Tidied whitespace
authorNeil Smith <neil.git@njae.me.uk>
Sat, 18 Jan 2014 12:39:26 +0000 (12:39 +0000)
committerNeil Smith <neil.git@njae.me.uk>
Sat, 18 Jan 2014 12:39:26 +0000 (12:39 +0000)
app/controllers/application_controller.rb
app/controllers/feed_controller.rb

index 840f64a869d8e9f56d14c3ccb01bf4edab74f199..edcea80d3fc2098d36c2d2bd307036f63222aacf 100644 (file)
@@ -1,6 +1,7 @@
 class ApplicationController < ActionController::Base
   # Prevent CSRF attacks by raising an exception.
   # For APIs, you may want to use :null_session instead.
+  
   # protect_from_forgery with: :exception
   protect_from_forgery with: :null_session
 end
index 2fd0bd60064b49552ddf3796bff41acc8eb59dcb..f7b8c3e9c7a8b65ba40e39e1aeff9fbc7cddf52c 100644 (file)
@@ -1,7 +1,5 @@
 class FeedController < ApplicationController
   
-  # skip_before_filter :verify_authenticity_token
-
   def index
     @feeds = FeedItem.select(:feed_name).distinct
     respond_to do |format|
@@ -9,7 +7,6 @@ class FeedController < ApplicationController
       format.rss { render :layout => false }
     end
   end
-
   
   def show
     if FeedItem::valid_feed_name?(params[:feed_name])
@@ -34,7 +31,6 @@ class FeedController < ApplicationController
     end
   end
 
-
   def update
     if FeedItem::valid_feed_name?(params[:feed_name])
       item = FeedItem.in_feed(params[:feed_name]).entitled(params[:title]).take
@@ -59,7 +55,6 @@ class FeedController < ApplicationController
 
   # private
 
-
   private def create_item
     item = FeedItem.new(:feed_name => params[:feed_name],
       :title => params[:title],
@@ -78,7 +73,6 @@ class FeedController < ApplicationController
     end
   end
 
-
   private def update_item(item)
     if item.update_attribute(:description, params[:description])
       flash[:notice] = "Element #{params[:title]} updated"
@@ -95,7 +89,6 @@ class FeedController < ApplicationController
     end
   end
 
-
   private def destroy_item(item)
     if item.destroy
       flash[:notice] = "Element #{params[:title]} deleted"