module Gitlab::Client::Boards

def board(project, id)

Returns:
  • (Gitlab::ObjectifiedHash) - Returns information about the board

Parameters:
  • id (Integer) -- The ID of a board.
  • project (Integer, String) -- The ID or name of a project.
def board(project, id)
  get("/projects/#{url_encode project}/boards/#{id}")
end