OSDN Git Service

mrg
[pettanr/pettanr.git] / app / controllers / speeches_controller.rb
index 432c696..658f270 100644 (file)
@@ -1,13 +1,13 @@
 class SpeechesController < ApplicationController
   if Manifest.manifest.magic_numbers['run_mode'] == 0
-    before_filter :authenticate_user, :only => []
-    before_filter :authenticate_author, :only => []
+    before_filter :authenticate_user, :only => [:new, :edit, :create, :update, :destroy]
+    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, :count, :count_by_author
     ]
-    before_filter :authenticate_user, :only => []
-    before_filter :authenticate_author, :only => []
+    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 => []
 
@@ -19,16 +19,17 @@ class SpeechesController < ApplicationController
     filer_list
   end
   
-  def by_speech_balloon
+  def by_author
     filer_list
   end
   
-  def by_writing_format
+  def by_speech_balloon
     filer_list
   end
   
   def show_html_format format
     format.html {
+      @item.boosts 'post'
       @speech = @item
     }
   end
@@ -46,12 +47,16 @@ class SpeechesController < ApplicationController
     list_count
   end
   
-  def count_by_speech_balloon
+  def count_by_author
     list_count
   end
   
-  def count_by_writing_format
-    list_count
+  def new
+    form_new
+  end
+  
+  def edit
+    form_edit
   end
   
 end