mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
39 lines
1.1 KiB
Ruby
39 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class ProjectCommentsController < BaseController
|
|
before_action :load_team
|
|
before_action :load_project
|
|
before_action :check_read_permissions
|
|
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,
|
|
each_serializer: CommentSerializer,
|
|
hide_project: true
|
|
end
|
|
|
|
def show
|
|
render jsonapi: @project_comment,
|
|
serializer: CommentSerializer,
|
|
hide_project: true,
|
|
include: :user
|
|
end
|
|
|
|
private
|
|
|
|
def check_read_permissions
|
|
raise PermissionError.new(Project, :read_comments) unless can_read_project_comments?(@project)
|
|
end
|
|
|
|
def load_project_comment
|
|
@project_comment = @project.project_comments.find(params.require(:id))
|
|
end
|
|
end
|
|
end
|
|
end
|