OSDN Git Service

add: resource_picture_pictures
[pettanr/pettanr.git] / app / controllers / speeches_controller.rb
index 2ee6880..fb37d66 100644 (file)
@@ -4,25 +4,30 @@ class SpeechesController < ApplicationController
     before_filter :authenticate_author, :only => [:new, :edit, :create, :update, :destroy]
   else
     before_filter :authenticate_reader, :only => [
-      :index, :show, :by_speech_balloon, :by_writing_format, :count, :count_by_speech_balloon, :count_by_writing_format
+      :index, :show, 
+      :by_author, :by_speech_balloon, :by_speech_balloon_template, :by_writing_format 
     ]
     before_filter :authenticate_user, :only => [:new, :edit, :create, :update, :destroy]
     before_filter :authenticate_author, :only => [:new, :edit, :create, :update, :destroy]
   end
   before_filter :authenticate_admin!, :only => []
-
-  def self.model
-    Speech
-  end
   
   def index
     filer_list
   end
   
+  def by_author
+    filer_list
+  end
+  
   def by_speech_balloon
     filer_list
   end
   
+  def by_speech_balloon_template
+    filer_list
+  end
+  
   def by_writing_format
     filer_list
   end
@@ -43,18 +48,6 @@ class SpeechesController < ApplicationController
     end
   end
   
-  def count
-    list_count
-  end
-  
-  def count_by_speech_balloon
-    list_count
-  end
-  
-  def count_by_writing_format
-    list_count
-  end
-  
   def new
     form_new
   end