mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-13 16:45:18 +08:00
40 lines
1.3 KiB
Ruby
40 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class ProtocolTemplatesController < BaseController
|
|
include Api::V1::ExtraParams
|
|
|
|
before_action :load_team
|
|
before_action only: :show do
|
|
load_protocol_template(:id)
|
|
end
|
|
|
|
def index
|
|
protocol_templates = timestamps_filter(Protocol.latest_available_versions(@team))
|
|
# Team owners see all protocol templates in the team
|
|
protocol_templates = protocol_templates.readable_by_user(current_user, @team) unless can_manage_team?(@team)
|
|
protocol_templates = protocol_templates.page(params.dig(:page, :number))
|
|
.per(params.dig(:page, :size))
|
|
|
|
render jsonapi: protocol_templates,
|
|
each_serializer: ProtocolTemplateSerializer, rte_rendering: render_rte?, team: @team
|
|
end
|
|
|
|
def show
|
|
render jsonapi: @protocol,
|
|
serializer: ProtocolTemplateSerializer,
|
|
include: include_params,
|
|
rte_rendering: render_rte?,
|
|
team: @team
|
|
end
|
|
|
|
private
|
|
|
|
def load_protocol_template(key = :protocol_id)
|
|
@protocol = @team.protocols.find(params.require(key))
|
|
raise PermissionError.new(Protocol, :read) unless can_read_protocol_in_repository?(@protocol)
|
|
end
|
|
end
|
|
end
|
|
end
|