OSDN Git Service

fix manifest
[pettanr/pettanr.git] / app / controllers / speech_balloon_templates_controller.rb
index 61be851..132aae7 100644 (file)
@@ -3,11 +3,11 @@ 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
-  before_filter :authenticate_admin!, :only => [:destroy]
+  before_filter :authenticate_admin, :only => [:new, :create, :edit, :update, :destroy]
 
   def self.model
     SpeechBalloonTemplate
@@ -17,6 +17,10 @@ class SpeechBalloonTemplatesController < ApplicationController
     filer_list
   end
   
+  def by_panel
+    filer_list
+  end
+  
   def by_system_picture
     filer_list
   end
@@ -40,10 +44,22 @@ class SpeechBalloonTemplatesController < ApplicationController
     list_count
   end
   
+  def count_by_panel
+    list_count
+  end
+  
   def count_by_system_picture
     list_count
   end
   
+  def new
+    form_new
+  end
+  
+  def edit
+    form_edit
+  end
+  
   def destroy
     @speech_balloon_template = SpeechBalloonTemplate.find(params[:id])
     @speech_balloon_template.destroy