OSDN Git Service

mrg
[pettanr/pettanr.git] / app / controllers / speech_balloon_templates_controller.rb
index 848dfe9..96f337d 100644 (file)
@@ -3,7 +3,7 @@ class SpeechBalloonTemplatesController < ApplicationController
     before_filter :authenticate_user, :only => []
   else
     before_filter :authenticate_reader, :only => [
-      :index, :show, :by_system_picture, :count, :count_by_system_picture
+      :index, :show, :by_panel, :by_system_picture, :count, :count_by_panel, :count_by_system_picture
     ]
     before_filter :authenticate_user, :only => []
   end
@@ -17,13 +17,16 @@ class SpeechBalloonTemplatesController < ApplicationController
     filer_list
   end
   
+  def by_panel
+    filer_list
+  end
+  
   def by_system_picture
     filer_list
   end
   
   def show_html_format format
     format.html {
-      @speech_balloon_template = @item
     }
   end
   
@@ -40,6 +43,10 @@ class SpeechBalloonTemplatesController < ApplicationController
     list_count
   end
   
+  def count_by_panel
+    list_count
+  end
+  
   def count_by_system_picture
     list_count
   end
@@ -53,8 +60,8 @@ class SpeechBalloonTemplatesController < ApplicationController
   end
   
   def destroy
-    @speech_balloon_template = SpeechBalloonTemplate.find(params[:id])
-    @speech_balloon_template.destroy
+    @item = SpeechBalloonTemplate.find(params[:id])
+    @item.destroy
 
     respond_to do |format|
       format.html { redirect_to :action => :list }