gitlab-org--gitlab-foss/app/controllers/projects/boards_controller.rb

43 lines
1000 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-08-01 16:09:41 +00:00
class Projects::BoardsController < Projects::ApplicationController
2017-08-28 21:56:49 +00:00
include BoardsResponses
2017-08-31 17:48:57 +00:00
include IssuableCollections
before_action :check_issues_available!
before_action :authorize_read_board!, only: [:index, :show]
before_action :boards, only: :index
2017-08-28 21:56:49 +00:00
before_action :assign_endpoint_vars
def index
2017-08-28 21:56:49 +00:00
respond_with_boards
end
2016-08-01 16:09:41 +00:00
def show
@board = boards.find(params[:id])
2017-08-28 21:56:49 +00:00
respond_with_board
2016-08-01 16:09:41 +00:00
end
private
def boards
@boards ||= Boards::ListService.new(project, current_user).execute
end
2017-08-28 21:56:49 +00:00
def assign_endpoint_vars
2017-12-03 18:46:07 +00:00
@boards_endpoint = project_boards_path(project)
2017-08-28 21:56:49 +00:00
@bulk_issues_path = bulk_update_project_issues_path(project)
2017-09-04 19:55:29 +00:00
@namespace_path = project.namespace.full_path
2017-08-28 21:56:49 +00:00
@labels_endpoint = project_labels_path(project)
end
def authorize_read_board!
return access_denied! unless can?(current_user, :read_board, project)
end
def serialize_as_json(resource)
2016-10-11 02:29:20 +00:00
resource.as_json(only: [:id])
end
2016-08-01 16:09:41 +00:00
end