OSDN Git Service

d8bb57a90385b6dce0986d4afea6343fba242254
[pettanr/pettanr.git] / app / controllers / speach_templates_controller.rb
1 class SpeachTemplatesController < ApplicationController
2   before_filter :authenticate_admin!, :except => [:index]
3
4   # GET /speach_templates
5   # GET /speach_templates.json
6   def index
7     @speach_templates = SpeachTemplate.all
8
9     respond_to do |format|
10       format.html # index.html.erb
11       format.json { render json: @speach_templates }
12     end
13   end
14
15 end