mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
35 lines
909 B
Ruby
35 lines
909 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class TaskGroupsController < BaseController
|
|
before_action :load_team
|
|
before_action :load_project
|
|
before_action :load_experiment
|
|
before_action :load_task_group, only: :show
|
|
|
|
def index
|
|
task_groups = @experiment.my_module_groups
|
|
.page(params.dig(:page, :number))
|
|
.per(params.dig(:page, :size))
|
|
render jsonapi: task_groups, each_serializer: TaskGroupSerializer, include: include_params
|
|
end
|
|
|
|
def show
|
|
render jsonapi: @task_group,
|
|
serializer: TaskGroupSerializer,
|
|
include: :tasks
|
|
end
|
|
|
|
private
|
|
|
|
def load_task_group
|
|
@task_group = @experiment.my_module_groups.find(params.require(:id))
|
|
end
|
|
|
|
def permitted_includes
|
|
%w(tasks)
|
|
end
|
|
end
|
|
end
|
|
end
|