2018-09-11 15:13:17 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Api
|
|
|
|
module V1
|
|
|
|
class ProjectCommentsController < BaseController
|
|
|
|
before_action :load_team
|
|
|
|
before_action :load_project
|
|
|
|
before_action :load_project_comment, only: :show
|
|
|
|
|
|
|
|
def index
|
|
|
|
project_comments = @project.project_comments
|
|
|
|
.page(params.dig(:page, :number))
|
|
|
|
.per(params.dig(:page, :size))
|
|
|
|
|
|
|
|
render jsonapi: project_comments,
|
2018-10-10 23:35:09 +08:00
|
|
|
each_serializer: CommentSerializer,
|
|
|
|
hide_project: true
|
2018-09-11 15:13:17 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2018-10-10 23:35:09 +08:00
|
|
|
render jsonapi: @project_comment,
|
|
|
|
serializer: CommentSerializer,
|
|
|
|
hide_project: true,
|
|
|
|
include: :user
|
2018-09-11 15:13:17 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def load_team
|
|
|
|
@team = Team.find(params.require(:team_id))
|
|
|
|
render jsonapi: {}, status: :forbidden unless can_read_team?(@team)
|
|
|
|
end
|
|
|
|
|
|
|
|
def load_project
|
|
|
|
@project = @team.projects.find(params.require(:project_id))
|
|
|
|
render jsonapi: {}, status: :forbidden unless can_read_project?(
|
|
|
|
@project
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def load_project_comment
|
|
|
|
@project_comment = @project.project_comments.find(params.require(:id))
|
|
|
|
render jsonapi: {}, status: :not_found if @project_comment.nil?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|