crossey_app/app/controllers/admin/comments_controller.rb
2013-09-30 17:42:55 +02:00

53 lines
562 B
Ruby

# -*- 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