2016-08-01 12:09:41 -04:00
|
|
|
class Projects::BoardsController < Projects::ApplicationController
|
2016-08-30 09:50:46 -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]
|
|
|
|
|
|
|
|
def index
|
|
|
|
@boards = ::Boards::ListService.new(project, current_user).execute
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.json do
|
2016-10-05 16:08:55 -04:00
|
|
|
render json: serialize_as_json(@boards)
|
2016-10-05 15:24:29 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
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])
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.json do
|
|
|
|
render json: serialize_as_json(@board)
|
|
|
|
end
|
|
|
|
end
|
2016-08-01 12:09:41 -04:00
|
|
|
end
|
2016-08-08 18:03:41 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
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
|