2018-09-11 15:13:17 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Api
|
|
|
|
module V1
|
|
|
|
class UserProjectsController < BaseController
|
|
|
|
before_action :load_team
|
|
|
|
before_action :load_project
|
|
|
|
before_action :load_user_project, only: :show
|
|
|
|
|
|
|
|
def index
|
|
|
|
user_projects = @project.user_projects
|
2018-09-11 15:16:59 +08:00
|
|
|
.page(params.dig(:page, :number))
|
|
|
|
.per(params.dig(:page, :size))
|
2018-09-11 15:13:17 +08:00
|
|
|
|
2018-10-10 23:35:09 +08:00
|
|
|
render jsonapi: user_projects,
|
|
|
|
each_serializer: UserProjectSerializer,
|
|
|
|
include: :user
|
2018-09-11 15:13:17 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2018-10-10 23:35:09 +08:00
|
|
|
render jsonapi: @user_project,
|
|
|
|
serializer: UserProjectSerializer,
|
|
|
|
include: :user
|
2018-09-11 15:13:17 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def load_user_project
|
|
|
|
@user_project = @project.user_projects.find(params.require(:id))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|