Files
astuto/app/controllers/comments_controller.rb
2019-10-01 19:15:03 +02:00

48 lines
1.1 KiB
Ruby

class CommentsController < ApplicationController
before_action :authenticate_user!, only: [:create]
def index
comments = Comment
.select(
:id,
:body,
:parent_id,
:is_post_update,
:updated_at,
'users.full_name as user_full_name',
'users.email as user_email',
)
.where(post_id: params[:post_id])
.left_outer_joins(:user)
.order(updated_at: :desc)
render json: comments
end
def create
comment = Comment.new(comment_params)
if comment.save
render json: comment.attributes.merge(
{ user_full_name: current_user.full_name, user_email: current_user.email}
), status: :created
else
render json: {
error: I18n.t('errors.comment.create', message: comment.errors.full_messages)
}, status: :unprocessable_entity
end
end
private
def comment_params
params
.require(:comment)
.permit(:body, :parent_id)
.merge(
user_id: current_user.id,
post_id: params[:post_id]
)
end
end