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