Files
astuto/app/controllers/comments_controller.rb

36 lines
804 B
Ruby
Raw Normal View History

2019-09-16 18:02:52 +02:00
class CommentsController < ApplicationController
before_action :authenticate_user!, only: [:create]
2019-09-16 18:02:52 +02:00
def index
comments = Comment
.where(post_id: params[:post_id])
.left_outer_joins(:user)
.select('comments.id, comments.body, comments.updated_at, users.full_name as user_full_name')
2019-09-16 18:02:52 +02:00
.order(updated_at: :desc)
render json: comments
end
def create
comment = Comment.new(comment_params)
if comment.save
render json: comment, status: :no_content
else
render json: I18n.t('errors.unauthorized'), status: :unauthorized
end
end
private
def comment_params
params
.require(:comment)
.permit(:body)
.merge(
user_id: current_user.id,
post_id: params[:post_id]
)
end
2019-09-16 18:02:52 +02:00
end