getProjectsFull method

Future<void> getProjectsFull(
  1. int boardId
)

Returns all projects that are statically associated with the board, for the given board ID. Returned projects are ordered by the name.

A project is associated with a board if the board filter contains reference the project.

The board filter contains reference the project only if JQL query guarantees that returned issues will be returned from the project set defined in JQL. For instance the query project in (ABC, BCD) AND reporter = admin have reference to ABC and BCD projects but query project in (ABC, BCD) OR reporter = admin doesn't have reference to any project.

Implementation

Future<void> getProjectsFull(int boardId) async {
  await _client.send(
    'get',
    'rest/agile/1.0/board/{boardId}/project/full',
    pathParameters: {
      'boardId': '$boardId',
    },
  );
}