# -*- encoding : utf-8 -*- class Admin::CommentsController < ApplicationController before_filter :auth_admin layout "admin" before_filter :find_comments def index end def edit @comment = Comment.find(params[:id]) end def update @comment = Comment.find(params[:id]) if @comment.update_attributes(params.require(:comment).permit!) else render :action => "edit" end end def destroy @comment = Comment.find(params[:id]) @comment.destroy end def find_comments @comments = Comment.all end end