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

24 lines
687 B
Ruby
Raw Normal View History

2016-08-01 12:09:41 -04:00
class Projects::BoardsController < Projects::ApplicationController
before_action :authorize_read_board!, only: [:show]
2016-08-01 12:09:41 -04:00
def show
board = Boards::CreateService.new(project, current_user).execute
2016-08-01 12:09:41 -04:00
respond_to do |format|
format.html
format.json { render json: board.lists.as_json(only: [:id, :list_type, :position], methods: [:title], include: { label: { only: [:id, :title, :description, :color, :priority] } }) }
2016-08-01 12:09:41 -04:00
end
end
private
def authorize_read_board!
unless can?(current_user, :read_board, project)
respond_to do |format|
format.html { return access_denied! }
format.json { return render_403 }
end
end
end
2016-08-01 12:09:41 -04:00
end