mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
42 lines
1.1 KiB
Ruby
42 lines
1.1 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)
|
|
)
|
|
.viewable_by_user(current_user, @team)
|
|
.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
|