OSDN Git Service

rename model name
[pettanr/pettanr.git] / app / controllers / speech_balloon_templates_controller.rb
index 61be851..0b2d024 100644 (file)
@@ -3,27 +3,26 @@ 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]
-
-  def self.model
-    SpeechBalloonTemplate
-  end
+  before_filter :authenticate_admin, :only => [:new, :create, :edit, :update, :destroy]
   
   def index
     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,13 +39,25 @@ 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
+    @item = SpeechBalloonTemplate.find(params[:id])
+    @item.destroy
 
     respond_to do |format|
       format.html { redirect_to :action => :list }